From 1d395d0231f18984289e4dc9f7f54d79f1df6259 Mon Sep 17 00:00:00 2001 From: Kyusung4698 Date: Sun, 15 Mar 2020 08:48:57 +0100 Subject: [PATCH] 0.6.3 (2020-03-15) ## 0.6.3 (2020-03-13) - add 3.10 stats (#311) - add support for windowed mode by moving the overlay on top of poe (#233) - update default dialog spawns to center (#315) - fix breaking on tab by settings window on top after tabbing back (#295) - fix dialog spawns not centered if zoomed (#315) --- CHANGELOG.md | 8 + README.md | 8 +- hook.ts | 20 +- main.ts | 38 +- package.json | 2 +- src/app/core/service/app.service.ts | 2 +- src/app/core/service/dialog/dialog.service.ts | 5 +- src/app/core/service/window.service.ts | 13 +- .../page/overlay/overlay.component.html | 2 +- .../layout/page/overlay/overlay.component.ts | 4 +- .../layout/service/user-settings.service.ts | 2 +- src/assets/poe/stats.json | 11904 ++++++++++++++++ 12 files changed, 11983 insertions(+), 25 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76cacccb..ebb38638 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.6.3 (2020-03-15) + +- add 3.10 stats (#311) +- add support for windowed mode by moving the overlay on top of poe (#233) +- update default dialog spawns to center (#315) +- fix breaking on tab by settings window on top after tabbing back (#295) +- fix dialog spawns not centered if zoomed (#315) + ## 0.6.2 (2020-03-13) - add periodic version check diff --git a/README.md b/README.md index ab78b597..dd2aebd5 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# PoE Overlay 0.6.2 +# PoE Overlay 0.6.3 An Overlay for Path of Exile. The ***core aspect*** is to blend in with the game. Built with Electron and Angular. @@ -81,11 +81,11 @@ These instructions will set you up to run and enjoy the overlay. #### Installing 1. Head over to [Releases](https://github.com/Kyusung4698/PoE-Overlay/releases) and download one of the following files - 1. `poe-overlay-Setup-0.6.2.exe` to install locally. This supports auto update/ auto launch. - 2. `poe-overlay-0.6.2.exe` portable version. This does not support auto update/ auto launch. + 1. `poe-overlay-Setup-0.6.3.exe` to install locally. This supports auto update/ auto launch. + 2. `poe-overlay-0.6.3.exe` portable version. This does not support auto update/ auto launch. 2. Run either of your downloaded file 3. Start Path of Exile -4. Wait until you can see `PoE Overlay 0.6.2` in the bottom left corner +4. Wait until you can see `PoE Overlay 0.6.3` in the bottom left corner 5. Hit `f7` and set `Language` and `League` to meet your game settings #### Shortcuts diff --git a/hook.ts b/hook.ts index 19a173c5..7bb56ac7 100644 --- a/hook.ts +++ b/hook.ts @@ -15,8 +15,16 @@ interface WheelEvent { ctrlKey: boolean; } +interface Bounds { + x: number; + y: number; + width: number; + height: number; +} + let active = false; -let activeChangeFn: (active: boolean) => void; +let bounds: Bounds = null; +let activeChangeFn: (active: boolean, bounds: Bounds) => void; let wheelChangeFn: (event: WheelEvent) => void; const activeCheck$ = new Subject(); @@ -54,11 +62,15 @@ function checkActive(): void { active = test.endsWith('pathofexile_x64_kg.exe') || test.endsWith('pathofexile_kg.exe') || test.endsWith('pathofexile_x64steam.exe') || test.endsWith('pathofexilesteam.exe') || test.endsWith('pathofexile_x64.exe') || test.endsWith('pathofexile.exe'); + + if (active) { + bounds = win.bounds; + } } if (old !== active) { if (activeChangeFn) { - activeChangeFn(active); + activeChangeFn(active, bounds); } } } @@ -67,14 +79,14 @@ export function getActive(): boolean { return active; } -export function on(event: 'change', callback: (active: boolean) => void): void; +export function on(event: 'change', callback: (active: boolean, bounds: Bounds) => void): void; export function on(event: 'wheel', callback: (event: WheelEvent) => void): void; export function on(event: string, callback: any) { switch (event) { case 'change': activeChangeFn = callback; - activeChangeFn(active); + activeChangeFn(active, bounds); break; case 'wheel': wheelChangeFn = callback; diff --git a/main.ts b/main.ts index 465607e0..f0ddb970 100644 --- a/main.ts +++ b/main.ts @@ -32,6 +32,7 @@ let win: BrowserWindow = null; let tray: Tray = null; let menu: Menu = null; let downloadItem: MenuItem = null; +let checkForUpdatesHandle; const childs: { [key: string]: BrowserWindow @@ -69,8 +70,24 @@ ipcMain.on('set-keyboard-delay', (event, delay) => { /* hook */ ipcMain.on('register-active-change', event => { - hook.on('change', active => { + hook.on('change', (active, bounds) => { event.sender.send('active-change', serve ? true : active); + + if (active) { + win.setAlwaysOnTop(false); + win.setVisibleOnAllWorkspaces(false); + + win.setAlwaysOnTop(true, 'pop-up-menu', 1); + win.setVisibleOnAllWorkspaces(true); + + if (bounds) { + win.setBounds({ + ...bounds + }); + log.info('set bounds to: ', win.getBounds()); + } + } + }); event.returnValue = true; }); @@ -127,6 +144,10 @@ autoUpdater.on('update-available', () => { }); menu?.insert(2, downloadItem); } + if (checkForUpdatesHandle) { + clearInterval(checkForUpdatesHandle); + checkForUpdatesHandle = null; + } }); autoUpdater.on('update-downloaded', () => { @@ -141,7 +162,7 @@ autoUpdater.on('update-downloaded', () => { ipcMain.on('app-download-init', (event, autoDownload) => { autoUpdater.autoDownload = autoDownload; autoUpdater.checkForUpdates(); - setInterval(() => { + checkForUpdatesHandle = setInterval(() => { autoUpdater.checkForUpdates(); }, 1000 * 60 * 5); event.returnValue = true; @@ -162,6 +183,12 @@ ipcMain.on('app-quit-and-install', event => { event.returnValue = true; }); +ipcMain.on('app-version', event => { + const version = app.getVersion(); + log.info('version: ', version) + event.returnValue = version; +}); + /* auto-launch */ ipcMain.on('app-auto-launch-enabled', event => { @@ -183,7 +210,7 @@ function createWindow(): BrowserWindow { // Create the browser window. win = new BrowserWindow({ - fullscreen: true, + // fullscreen: true, width: bounds.width, height: bounds.height, x: bounds.x, @@ -219,10 +246,9 @@ function createWindow(): BrowserWindow { ipcMain.on('open-route', (event, route) => { try { if (!childs[route]) { - const { bounds } = getDisplay(); - // Create the child browser window. + const bounds = win.getBounds(); childs[route] = new BrowserWindow({ - fullscreen: true, + // fullscreen: true, width: bounds.width, height: bounds.height, x: bounds.x, diff --git a/package.json b/package.json index 1faeb261..c0d7700b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "poe-overlay", - "version": "0.6.2", + "version": "0.6.3", "private": true, "description": "A Overlay for Path of Exile. Built with Electron and Angular.", "main": "main.js", diff --git a/src/app/core/service/app.service.ts b/src/app/core/service/app.service.ts index db5f1091..ff53b65e 100644 --- a/src/app/core/service/app.service.ts +++ b/src/app/core/service/app.service.ts @@ -93,7 +93,7 @@ export class AppService { } public version(): string { - return this.electron.app.getVersion(); + return this.ipcRenderer.sendSync('app-version'); } public quit(): void { diff --git a/src/app/core/service/dialog/dialog.service.ts b/src/app/core/service/dialog/dialog.service.ts index 2599ca01..cd781f77 100644 --- a/src/app/core/service/dialog/dialog.service.ts +++ b/src/app/core/service/dialog/dialog.service.ts @@ -32,9 +32,10 @@ export class DialogService { const local = point ? this.window.convertToLocal(point) : { x: bounds.width * 0.5, y: bounds.height * 0.5 }; + const scaled = this.window.convertToLocalScaled(local); - const left = Math.max(Math.min(local.x - width * 0.5, bounds.width - width), 0); - const top = Math.max(Math.min(local.y - height * 0.5, bounds.height - height), 0); + const left = Math.max(Math.min(scaled.x - width * 0.5, bounds.width - width), 0); + const top = Math.max(Math.min(scaled.y - height * 0.5, bounds.height - height), 0); this.window.enableInput(); const dialogRef = this.dialog.open(componentOrTemplateRef, { diff --git a/src/app/core/service/window.service.ts b/src/app/core/service/window.service.ts index b4a7ce28..fdc10d02 100644 --- a/src/app/core/service/window.service.ts +++ b/src/app/core/service/window.service.ts @@ -71,10 +71,17 @@ export class WindowService { local.x = Math.min(Math.max(local.x, 0), bounds.width); local.y -= bounds.y; local.y = Math.min(Math.max(local.y, 0), bounds.height); + return local; + } + + public convertToLocalScaled(local: Point): Point{ + const point = { + ...local + }; const { zoomFactor } = this.window.webContents; - local.x *= 1 / zoomFactor; - local.y *= 1 / zoomFactor; - return local; + point.x *= 1 / zoomFactor; + point.y *= 1 / zoomFactor; + return point; } } diff --git a/src/app/layout/page/overlay/overlay.component.html b/src/app/layout/page/overlay/overlay.component.html index f5464657..5b4c8979 100644 --- a/src/app/layout/page/overlay/overlay.component.html +++ b/src/app/layout/page/overlay/overlay.component.html @@ -1 +1 @@ -
PoE-Overlay: {{version}}
\ No newline at end of file +
PoE Overlay: {{version$ | async}}
\ No newline at end of file diff --git a/src/app/layout/page/overlay/overlay.component.ts b/src/app/layout/page/overlay/overlay.component.ts index fad373c7..af280376 100644 --- a/src/app/layout/page/overlay/overlay.component.ts +++ b/src/app/layout/page/overlay/overlay.component.ts @@ -22,7 +22,7 @@ import { UserSettings } from '../../type'; export class OverlayComponent implements OnInit, OnDestroy { private userSettingsOpen: Observable; - public version: string; + public version$ = new BehaviorSubject(''); public displayVersion$ = new BehaviorSubject(true); constructor( @@ -33,7 +33,6 @@ export class OverlayComponent implements OnInit, OnDestroy { private readonly app: AppService, private readonly snackBar: SnackBarService, private readonly window: WindowService, - private readonly browser: BrowserService, private readonly renderer: RendererService, private readonly shortcut: ShortcutService, private readonly dialogRef: DialogRefService, @@ -47,6 +46,7 @@ export class OverlayComponent implements OnInit, OnDestroy { } public ngOnInit(): void { + this.version$.next(this.app.version()); this.initSettings(); } diff --git a/src/app/layout/service/user-settings.service.ts b/src/app/layout/service/user-settings.service.ts index ef1a2686..f58b68ad 100644 --- a/src/app/layout/service/user-settings.service.ts +++ b/src/app/layout/service/user-settings.service.ts @@ -29,7 +29,7 @@ export class UserSettingsService { exitAppKeybinding: 'F8', language: Language.English, zoom: 100, - dialogSpawnPosition: DialogSpawnPosition.Cursor, + dialogSpawnPosition: DialogSpawnPosition.Center, displayVersion: true, autoDownload: true }; diff --git a/src/assets/poe/stats.json b/src/assets/poe/stats.json index 706b97b3..e5f985af 100644 --- a/src/assets/poe/stats.json +++ b/src/assets/poe/stats.json @@ -21748,6 +21748,36 @@ } } }, + "stat_185598681": { + "id": "additive_spell_damage_modifiers_apply_to_attack_damage_at_150%_value", + "negated": false, + "text": { + "1": { + "#": "^Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value$" + }, + "2": { + "#": "^Aumentos e Reduções ao Dano Mágico também se aplicam aos Ataques em 150% de seu valor$" + }, + "3": { + "#": "^Увеличения и уменьшения урона от чар также действуют на атаки в размере 150% от их значения$" + }, + "4": { + "#": "^ม็อดที่ส่งผลเพิ่มและลด ความเสียหาย เวทย์ จะส่งผลต่อ การโจมตี ด้วยที่สัดส่วน 150%$" + }, + "5": { + "#": "^Erhöhungen und Verringerungen von Zauberschaden gelten zu 150% ihres Werts auch für Angriffe$" + }, + "6": { + "#": "^Les Augmentations et Réductions affectant les Dégâts des Sorts s'appliquent également aux Attaques, à 150% de leurs valeurs$" + }, + "7": { + "#": "^Los aumentos y las reducciones al daño de hechizos también se aplican a los ataques al 150% de su valor$" + }, + "8": { + "#": "^주문 피해에 적용되는 증가 및 감소 값의 150%만큼을 공격에도 적용$" + } + } + }, "stat_3304763863": { "id": "killed_monster_dropped_item_quantity_+%_when_frozen", "negated": false, @@ -27304,6 +27334,36 @@ } } }, + "stat_28721242": { + "id": "allow_2_active_banners", + "negated": false, + "text": { + "1": { + "#": "^You can have two different Banners at the same time$" + }, + "2": { + "#": "^Você pode ter dois Estandartes diferentes ao mesmo tempo$" + }, + "3": { + "#": "^Вы можете иметь два разных активных знамени одновременно$" + }, + "4": { + "#": "^คุณสามารถมีธงได้สองชนิดพร้อมกัน$" + }, + "5": { + "#": "^Ihr könnt gleichzeitg zwei verschiedene Banner haben$" + }, + "6": { + "#": "^Vous pouvez déployer simultanément deux Étendards différents$" + }, + "7": { + "#": "^Puedes tener dos estandartes distintos al mismo tiempo$" + }, + "8": { + "#": "^동시에 2가지 깃발 보유 가능$" + } + } + }, "stat_4196775867": { "id": "buff_auras_dont_affect_allies", "negated": false, @@ -34631,6 +34691,36 @@ } } }, + "stat_2948375275": { + "id": "critical_strike_chance_+%_per_stackable_unique_jewel", + "negated": false, + "text": { + "1": { + "#": "^(\\S+)% increased Critical Strike Chance per Grand Spectrum$" + }, + "2": { + "#": "^Chance de Acerto Crítico aumentada em (\\S+)% por Espectro Grandioso$" + }, + "3": { + "#": "^(\\S+)% повышение шанса критического удара за Великий образ$" + }, + "4": { + "#": "^เพิ่มโอกาสคลิติคอล (\\S+)% ต่อ Grand Spectrum หนึ่งเม็ด$" + }, + "5": { + "#": "^(\\S+)% erhöhte kritische Trefferchance pro Großes Spektrum$" + }, + "6": { + "#": "^(\\S+)% d'Augmentation des Chances de coup critique par Nuance du Spectre$" + }, + "7": { + "#": "^Probabilidad de golpe crítico aumentada un (\\S+)% por cada Gran espectro$" + }, + "8": { + "#": "^장대한 파장 하나당 치명타 확률 (\\S+)% 증가$" + } + } + }, "stat_3163738488": { "id": "elemental_damage_+%_per_stackable_unique_jewel", "negated": false, @@ -34661,6 +34751,36 @@ } } }, + "stat_242161915": { + "id": "elemental_resistance_%_per_stackable_unique_jewel", + "negated": false, + "text": { + "1": { + "#": "^(\\S+)% to all Elemental Resistances per Grand Spectrum$" + }, + "2": { + "#": "^(\\S+)% de todas as Resistências Elementais por Espectro Grandioso$" + }, + "3": { + "#": "^(\\S+)% к сопротивлению всем стихиям за Великий образ$" + }, + "4": { + "#": "^ต้านทาน ทุกธาตุ (\\S+)% ต่อ Grand Spectrum หนึ่งเม็ด$" + }, + "5": { + "#": "^(\\S+)% zu allen Elementarwiderständen pro Großes Spektrum$" + }, + "6": { + "#": "^(\\S+)% à toutes les Résistances élémentaires par Nuance du Spectre$" + }, + "7": { + "#": "^(\\S+)% a todas las Resistencias elementales por cada Gran espectro$" + }, + "8": { + "#": "^장대한 파장 하나당 모든 원소 저항 (\\S+)%$" + } + } + }, "stat_154272030": { "id": "damage_+%_per_abyss_jewel_type", "negated": false, @@ -40829,6 +40949,36 @@ } } }, + "stat_3095266721": { + "id": "attack_dodge_%_while_channelling", + "negated": false, + "text": { + "1": { + "#": "^(\\S+)% chance to Dodge Attack Hits while Channelling$" + }, + "2": { + "#": "^(\\S+)% de chance de Esquivar dos Acertos de Ataques enquanto Canalizando$" + }, + "3": { + "#": "^(\\S+)% шанс увернуться от ударов атаками при поддержании$" + }, + "4": { + "#": "^โอกาสหลีกเลี่ยงการโจมตี (\\S+)% ขณะแชนเนล$" + }, + "5": { + "#": "^(\\S+)% Chance, während des Kanalisierens Angriffstreffern zu entgehen$" + }, + "6": { + "#": "^(\\S+)% de chances d'Esquiver les Attaques au Toucher pendant la Canalisation$" + }, + "7": { + "#": "^(\\S+)% de probabilidad de esquivar golpes de ataques mientras canalizas$" + }, + "8": { + "#": "^집중 유지하는 동안 (\\S+)%의 확률로 공격 적중 완벽회피$" + } + } + }, "stat_1060540099": { "id": "attack_minimum_added_fire_damage_per_10_strength attack_maximum_added_fire_damage_per_10_strength", "negated": false, @@ -40919,6 +41069,36 @@ } } }, + "stat_2778228111": { + "id": "attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana", + "negated": false, + "text": { + "1": { + "#": "^Attack Skills have Added Lightning Damage equal to (\\S+)% of maximum Mana$" + }, + "2": { + "#": "^Habilidades de Ataque têm Dano de Raio Adicional igual a (\\S+)% da Mana máxima$" + }, + "3": { + "#": "^Умения атак имеют добавленный урон от молнии, равный (\\S+)% от максимума маны$" + }, + "4": { + "#": "^เสริมความเสียหาย สายฟ้า ให้กับสกิลโจมตี เท่ากับ (\\S+)% ของค่ามานาสูงสุด$" + }, + "5": { + "#": "^Angriffsfertigkeiten haben zusätzlichen Blitzschaden entsprechend (\\S+)% des maximalen Manas$" + }, + "6": { + "#": "^Les Attaques bénéficient de Dégâts de foudre supplémentaires équivalents à (\\S+)% du Mana maximal$" + }, + "7": { + "#": "^Las habilidades de ataque tienen daño de rayo agregado igual al (\\S+)% del maná máximo$" + }, + "8": { + "#": "^공격 스킬이 최대 마나의 (\\S+)%와 동일한 추가 번개 피해 보유$" + } + } + }, "stat_2025297472": { "id": "attack_speed_+%_per_explicit_map_mod_affecting_area", "negated": false, @@ -41467,6 +41647,112 @@ } } }, + "stat_4173140569": { + "id": "add_1_stage_to_banners_on_melee_hit_up_to_5_per_second", + "negated": false, + "text": { + "1": { + "#": "^Banners you are carrying gain 1 Stage on Melee Hit, up to 5 per second$" + }, + "2": { + "#": "^Estandartes que você carrega ganham 1 Estágio no Acerto Corpo a Corpo, máximo de 5 por segundo$" + }, + "3": { + "#": "^Знамена, которые вы несете, получают 1 стадию при нанесении удара в ближнем бою, вплоть до 5 в секунду$" + }, + "4": { + "#": "^ธงที่คุณถือจะได้รับ 1 เสต็จทุกครั้งที่คุณปะทะด้วยการโจมตีประชิด แต่สูงสุดไม่เกิน 5 เสต็จต่อวินาที$" + }, + "5": { + "#": "^Banner, die Ihr tragt, erhalten bei Nahkampftreffer 1 Phase, bis zu 5 pro Sekunde$" + }, + "6": { + "#": "^Les Étendards que vous portez gagnent 1 Palier lorsque vous Touchez en mêlée, jusqu'à un maximum de 5 Paliers par seconde$" + }, + "7": { + "#": "^Los estandartes que portas ganan 1 fase por cada golpe cuerpo a cuerpo, hasta 5 por segundo$" + }, + "8": { + "#": "^근접 타격 시 지니고 있는 깃발 1단계 증가, 1초마다 최대 5단계 증가$" + } + } + }, + "stat_3114469764": { + "id": "banner_adrenaline_duration_+%", + "negated": false, + "text": { + "1": { + "1|#": "^War Banner has (\\S+)% increased Adrenaline duration$", + "N#|-1": "^War Banner has (\\S+)% reduced Adrenaline duration$" + }, + "2": { + "1|#": "^Estandarte da Guerra tem duração da Adrenalina aumentada em (\\S+)%$", + "N#|-1": "^Estandarte da Guerra tem duração da Adrenalina reduzida em (\\S+)%$" + }, + "3": { + "1|#": "^Знамя войны имеет (\\S+)% увеличение длительности Адреналина$", + "N#|-1": "^Знамя войны имеет (\\S+)% уменьшение длительности Адреналина$" + }, + "4": { + "1|#": "^เพิ่มระยะเวลาของบัฟ Adrenaline ที่ได้จาก War Banner (\\S+)%$", + "N#|-1": "^ลดระยะเวลาของบัฟ Adrenaline ที่ได้จาก War Banner (\\S+)%$" + }, + "5": { + "1|#": "^'Kriegsbanner' hat (\\S+)% verlängerte Adrenalin-Dauer$", + "N#|-1": "^'Kriegsbanner' hat (\\S+)% verkürzte Adrenalin-Dauer$" + }, + "6": { + "1|#": "^L'Adrénaline octroyée par Étendard de guerre a (\\S+)% d'Augmentation de Durée$", + "N#|-1": "^L'Adrénaline octroyée par Étendard de guerre a (\\S+)% de Réduction de Durée$" + }, + "7": { + "1|#": "^El estandarte de guerra tiene duración de adrenalina aumentada un (\\S+)%$", + "N#|-1": "^El estandarte de guerra tiene duración de adrenalina reducida un (\\S+)%$" + }, + "8": { + "1|#": "^전쟁 깃발의 아드레날린 지속시간 (\\S+)% 증가$", + "N#|-1": "^전쟁 깃발의 아드레날린 지속시간 (\\S+)% 감소$" + } + } + }, + "stat_3853465279": { + "id": "banner_fortify_duration_+%", + "negated": false, + "text": { + "1": { + "1|#": "^Dread Banner has (\\S+)% increased Fortify duration$", + "N#|-1": "^Dread Banner has (\\S+)% reduced Fortify duration$" + }, + "2": { + "1|#": "^Estandarte do Horror tem duração do Fortificar aumentada em (\\S+)%$", + "N#|-1": "^Estandarte do Horror tem duração do Fortificar reduzida em (\\S+)%$" + }, + "3": { + "1|#": "^Знамя страха имеет (\\S+)% увеличение длительности Укрепления$", + "N#|-1": "^Знамя страха имеет (\\S+)% уменьшение длительности Укрепления$" + }, + "4": { + "1|#": "^เพิ่มระยะเวลาของบัฟ Fortify ที่ได้จาก Dread Banner (\\S+)%$", + "N#|-1": "^ลดระยะเวลาของบัฟ Fortify ที่ได้จาก Dread Banner (\\S+)%$" + }, + "5": { + "1|#": "^'Todesbanner' hat (\\S+)% verlängerte Dauer von Verstärken$", + "N#|-1": "^'Todesbanner' hat (\\S+)% verkürzte Dauer von Verstärken$" + }, + "6": { + "1|#": "^Le Renforcement octroyé par Étendard de terreur a (\\S+)% d'Augmentation de Durée$", + "N#|-1": "^Le Renforcement octroyé par Étendard de terreur a (\\S+)% de Réduction de Durée$" + }, + "7": { + "1|#": "^Estandarte de pavor tiene duración de fortificación aumentada un (\\S+)%$", + "N#|-1": "^Estandarte de pavor tiene duración de fortificación reducida un (\\S+)%$" + }, + "8": { + "1|#": "^공포의 깃발의 방어 상승 지속시간 (\\S+)% 증가$", + "N#|-1": "^공포의 깃발의 방어 상승 지속시간 (\\S+)% 감소$" + } + } + }, "stat_2658399404": { "id": "bleeding_reflected_to_self", "negated": false, @@ -42933,6 +43219,44 @@ } } }, + "stat_3057853352": { + "id": "chance_to_sap_%_vs_enemies_in_chilling_areas", + "negated": false, + "text": { + "1": { + "1|99": "^(\\S+)% chance to Sap Enemies in Chilling Areas$", + "N100|#": "^Always Sap Enemies in Chilling Areas$" + }, + "2": { + "1|99": "^(\\S+)% de chance de Exaurir Inimigos em Áreas Resfriadas$", + "N100|#": "^Sempre Exaure Inimigos em Áreas Resfriadas$" + }, + "3": { + "1|99": "^(\\S+)% шанс ошеломить врагов на охлажденных областях$", + "N100|#": "^Всегда ошеломляет врагов на охлажденных областях$" + }, + "4": { + "1|99": "^มีโอกาส (\\S+)% ที่จะทำให้ศัตรูใน พื้นที่หนาวเย็น ติดสถานะ Sapped$", + "N100|#": "^ทำให้ศัตรูใน พื้นที่หนาวเย็น ติดสถานะ Sapped$" + }, + "5": { + "1|99": "^(\\S+)% Chance, Gegner in unterkühlenden Gebieten auszulaugen$", + "N100|#": "^Laugt Gegner in unterkühlenden Gebieten immer aus$" + }, + "6": { + "1|99": "^(\\S+)% de chances d'Amoindrir les Ennemis situés dans les Zones frigorifiantes$", + "N100|#": "^Vous Amoindrissez toujours les Ennemis situés dans les Zones frigorifiantes$" + }, + "7": { + "1|99": "^(\\S+)% de probabilidad de debilitar a los enemigos en áreas de escarcha$", + "N100|#": "^Siempre debilita a los enemigos en áreas de escarcha$" + }, + "8": { + "1|99": "^(\\S+)%의 확률로 냉각 지역에 있는 적 활력 감소$", + "N100|#": "^항상 냉각 지역에 있는 적 활력 감소$" + } + } + }, "stat_4069101408": { "id": "chance_to_shock_chilled_enemies_%", "negated": false, @@ -43603,6 +43927,44 @@ } } }, + "stat_3923274300": { + "id": "chilling_areas_also_grant_lightning_damage_taken_+%", + "negated": false, + "text": { + "1": { + "1|#": "^Enemies in your Chilling Areas take (\\S+)% increased Lightning Damage$", + "N#|-1": "^Enemies in your Chilling Areas take (\\S+)% reduced Lightning Damage$" + }, + "2": { + "1|#": "^Inimigos nas suas Áreas Resfriadas sofrem Dano de Raio aumentado em (\\S+)%$", + "N#|-1": "^Inimigos nas suas Áreas Resfriadas sofrem Dano de Raio reduzido em (\\S+)%$" + }, + "3": { + "1|#": "^Враги на ваших охлажденных областях получают увеличенный на (\\S+)% урон от молнии$", + "N#|-1": "^Враги на ваших охлажденных областях получают уменьшенный на (\\S+)% урон от молнии$" + }, + "4": { + "1|#": "^ศัตรูในพื้นที่หนาวเย็นของคุณจะ ได้รับความเสียหาย สายฟ้า เพิ่มขึ้น (\\S+)%$", + "N#|-1": "^ศัตรูในพื้นที่หนาวเย็นของคุณจะ ได้รับความเสียหาย สายฟ้า ลดลง (\\S+)%$" + }, + "5": { + "1|#": "^Gegner in Euren unterkühlenden Gebieten erleiden (\\S+)% erhöhten Blitzschaden$", + "N#|-1": "^Gegner in Euren unterkühlenden Gebieten erleiden (\\S+)% verringerten Blitzschaden$" + }, + "6": { + "1|#": "^Les Ennemis situés dans vos Zones frigorifiantes ont (\\S+)% d'Augmentation des Dégâts de foudre subis$", + "N#|-1": "^Les Ennemis situés dans vos Zones frigorifiantes ont (\\S+)% de Réduction des Dégâts de foudre subis$" + }, + "7": { + "1|#": "^Los enemigos en tus áreas de escarcha reciben daño de rayo aumentado un (\\S+)%$", + "N#|-1": "^Los enemigos en tus áreas de escarcha reciben daño de rayo reducido un (\\S+)%$" + }, + "8": { + "1|#": "^냉각 지역에 있는 적들이 받는 번개 피해 (\\S+)% 증가$", + "N#|-1": "^냉각 지역에 있는 적들이 받는 번개 피해 (\\S+)% 감소$" + } + } + }, "stat_2250543633": { "id": "clarity_reserves_no_mana", "negated": false, @@ -52077,6 +52439,36 @@ } } }, + "stat_113147867": { + "id": "lose_%_of_mana_when_you_use_an_attack_skill", + "negated": false, + "text": { + "1": { + "#": "^Lose (\\S+)% of Mana when you use an Attack Skill$" + }, + "2": { + "#": "^Perca (\\S+)% da Mana ao usar uma Habilidade de Ataque$" + }, + "3": { + "#": "^Вы теряете (\\S+)% маны при использовании умения атаки$" + }, + "4": { + "#": "^สูญเสีย มานา (\\S+)% ทุกครั้งที่คุณใช้สกิลโจมตี$" + }, + "5": { + "#": "^Verliert (\\S+)% des Manas, wenn Ihr eine Angriffsfertigkeit benutzt$" + }, + "6": { + "#": "^Vous perdez (\\S+)% de Mana lorsque vous utilisez une Aptitude d'Attaque$" + }, + "7": { + "#": "^Pierdes un (\\S+)% del maná cuando usas una habilidad de ataque$" + }, + "8": { + "#": "^공격 스킬 사용 시 마나의 (\\S+)% 손실$" + } + } + }, "stat_3530865840": { "id": "lose_power_charge_each_second_if_not_detonated_mines_recently", "negated": false, @@ -54151,6 +54543,34 @@ } } }, + "stat_1733969225": { + "id": "map_death_and_taxes_boss_drops_additional_currency", + "negated": false, + "text": { + "1": { + "1": "^Unique Boss drops an additional Currency Item$" + }, + "2": { + "1": "^Chefe Único derruba um Item Monetário adicional$" + }, + "3": { + "1": "^Из уникального босса выпадает дополнительная валюта$" + }, + "4": {}, + "5": { + "1": "^Einzigartiger Boss lässt einen zusätzlichen Währungsgegenstand fallen$" + }, + "6": { + "1": "^Le Monstre Unique cède un Objet monétaire supplémentaire$" + }, + "7": { + "1": "^El jefe único arroja un objeto monetario adicional$" + }, + "8": { + "1": "^고유 보스가 화폐 아이템 1개를 추가로 떨어뜨림$" + } + } + }, "stat_3112480888": { "id": "map_player_dodge_chance_%_during_shrine_effect", "negated": false, @@ -65385,6 +65805,36 @@ } } }, + "stat_2417845663": { + "id": "spell_dodge_%_while_channelling", + "negated": false, + "text": { + "1": { + "#": "^(\\S+)% chance to Dodge Spell Hits while Channelling$" + }, + "2": { + "#": "^(\\S+)% de chance de Esquivar de Acertos Mágicos enquanto Canalizando$" + }, + "3": { + "#": "^(\\S+)% шанс увернуться от ударов чарами при поддержании$" + }, + "4": { + "#": "^มีโอกาส หลบเลี่ยง การโจมตีและเวทย์ (\\S+)% ระหว่างที่กำลังแชนเนล$" + }, + "5": { + "#": "^(\\S+)% Chance, Zaubertreffer während des Kanalisierens zu blocken$" + }, + "6": { + "#": "^(\\S+)% de chances d'Esquiver les Sorts au Toucher pendant la Canalisation$" + }, + "7": { + "#": "^(\\S+)% de probabilidad de esquivar golpes de hechizos mientras estás canalizando$" + }, + "8": { + "#": "^집중 유지하는 동안 (\\S+)%의 확률로 주문 적중 완벽회피$" + } + } + }, "stat_291644318": { "id": "spell_skills_deal_no_damage", "negated": false, @@ -67009,6 +67459,66 @@ } } }, + "stat_3909952544": { + "id": "gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness", + "negated": false, + "text": { + "1": { + "#": "^You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness$" + }, + "2": { + "#": "^Você possui Confluxo de Incêndio, Resfriamento e Eletrização enquanto afetado por Loucura Gloriosa$" + }, + "3": { + "#": "^Вы получаете Поджигающее, Охлаждающее и Шоковое слияние под действием Великолепного безумия$" + }, + "4": { + "#": "^คุณจะได้รับผล Conflux ลุกไหม้, หนาวเย็น, และช็อค ขณะได้รับผลของ Glorious Madness$" + }, + "5": { + "#": "^Ihr habt unterkühlende, schockende und entzündende Konfluenz, während Ihr unter dem Einfluss von 'Herrlicher Wahnsinn' steht$" + }, + "6": { + "#": "^Vous avez Conflux élémentaire tant que Splendide démence vous affecte$" + }, + "7": { + "#": "^Tienes Confluencia de quemadura, de escarcha y de electrocucción mientras estés afectado por Locura gloriosa$" + }, + "8": { + "#": "^찬란한 광기의 영향을 받는 동안 점화, 냉각 및 감전 합류 획득$" + } + } + }, + "stat_1065479853": { + "id": "immune_to_elemental_status_ailments_while_affected_by_glorious_madness", + "negated": false, + "text": { + "1": { + "#": "^Immune to Elemental Ailments while affected by Glorious Madness$" + }, + "2": { + "#": "^Imune a Afecções Elementais enquanto afetado por Loucura Gloriosa$" + }, + "3": { + "#": "^Иммунитет к стихийным состояниям под действием Великолепного безумия$" + }, + "4": { + "#": "^ไม่ติดสถานะเจ็บป่วยธาตุทุกชนิด ขณะได้รับผลของ Glorious Madness$" + }, + "5": { + "#": "^Immun gegen elementare Beeinträchtigungen während unter dem Einfluss von 'Herrlicher Wahnsinn'$" + }, + "6": { + "#": "^Vous avez l'Immunité aux Altérations élémentaires tant que Splendide démence vous affecte$" + }, + "7": { + "#": "^Eres inmune a los achaques elementales mientras estés afectado por Locura gloriosa$" + }, + "8": { + "#": "^찬란한 광기의 영향을 받는 동안 원소 상태 이상에 면역$" + } + } + }, "stat_1964333391": { "id": "lightning_damage_taken_per_minute_per_power_charge_if_have_crit_recently", "negated": false, @@ -67069,6 +67579,36 @@ } } }, + "stat_1264919148": { + "id": "support_anticipation_charge_gain_interval_ms virtual_support_anticipation_charge_gain_interval_ms support_anticipation_rapid_fire_count skill_max_unleash_seals", + "negated": false, + "text": { + "1": { + "0 0 1|# 0": "^Skills supported by Unleash have (\\S+) to maximum number of Seals$" + }, + "2": { + "0 0 1|# 0": "^Habilidades suportadas por Liberar tem (\\S+) ao número máximo de Selos$" + }, + "3": { + "0 0 1|# 0": "^Усиленные Высвобождением умения имеют (\\S+) к максимуму Печатей$" + }, + "4": { + "0 0 1|# 0": "^สกิลที่ถูกเสริมด้วยหิน Unleash จะมีจำนวน Seal สูงสุด (\\S+)$" + }, + "5": { + "0 0 1|# 0": "^Fertigkeiten, die durch 'Entfesseln' unterstützt werden, haben (\\S+) zu maximaler Anzahl an Siegeln$" + }, + "6": { + "0 0 1|# 0": "^Les Aptitudes modifiées par Déchaînement ont (\\S+) au nombre maximum de Sceaux$" + }, + "7": { + "0 0 1|# 0": "^Las habilidades asistidas por Descarga tienen (\\S+) al número máximo de sellos$" + }, + "8": { + "0 0 1|# 0": "^촉발 보조 젬 효과가 적용되는 스킬이 가지는 최대 봉인 수 (\\S+)$" + } + } + }, "stat_4096052153": { "id": "zealotry_aura_effect_+%", "negated": false, @@ -69129,6 +69669,36 @@ } } }, + "stat_372478711": { + "id": "local_jewel_+%_effect_per_passive_between_jewel_and_class_start", + "negated": false, + "text": { + "1": { + "#": "^This Jewel's Socket has (\\S+)% increased effect per Allocated Passive Skill between\nit and your Class' starting location$" + }, + "2": { + "#": "^Este Encaixe de Joia tem efeito aumentado em (\\S+)% por Habilidade Passiva Alocada entre\nele e o ponto de início da sua Classe' starting location$" + }, + "3": { + "#": "^Это гнездо самоцвета имеет (\\S+)% усиление эффекта за каждое выбранное пассивное умение между\nним и начальной позицией вашего класса$" + }, + "4": { + "#": "^เพิ่มผลของ รูของจิวเวลนี้ (\\S+)% ต่อจำนวนพาสซีพที่จัดสรรไว้ระหว่างทางจาก\nตัวมันเองไปหาจุดเริ่มต้นของอาชีพตัวละครของคุณ$" + }, + "5": { + "#": "^Diese Juwelenfassung hat (\\S+)% erhöhte Wirkung pro zugewiesener passiver Fertigkeit zwischen der Fassung\nund dem Startpunkt Eurer Charakterklasse$" + }, + "6": { + "#": "^Ce Joyau a (\\S+)% d'Augmentation d'Effet par Talent passif attribué entre\nsa Châsse et le point de départ de votre Classe$" + }, + "7": { + "#": "^Este engarce de joya tiene efecto aumentado un (\\S+)% por cada habilidad pasiva asignada entre\nél y el punto de origen de tu clase$" + }, + "8": { + "#": "^주얼 슬롯의 효과가 해당 슬롯과 직업의 시작 지점 사이에 할당된 패시브\n스킬 하나당 (\\S+)% 증가$" + } + } + }, "pseudo_timeless_jewel_xibaqua": { "id": "local_unique_jewel_alternate_tree_version local_unique_jewel_alternate_tree_seed local_unique_jewel_alternate_tree_keystone", "negated": false, @@ -69778,6 +70348,36 @@ } } }, + "stat_2343098806": { + "id": "local_display_grant_level_x_snipe_skill", + "negated": false, + "text": { + "1": { + "#": "^Grants Level (\\S+) Snipe Skill$" + }, + "2": { + "#": "^Concede a Habilidade Atirador Nível (\\S+)$" + }, + "3": { + "#": "^Дарует умение Прицельный выстрел (\\S+) уровня$" + }, + "4": { + "#": "^ได้รับสกิล Snipe เลเวล (\\S+)$" + }, + "5": { + "#": "^Gewährt die Fertigkeit 'Scharfschuss' Stufe (\\S+)$" + }, + "6": { + "#": "^Octroie l'Aptitude Rafale \\(Niveau (\\S+)\\)$" + }, + "7": { + "#": "^Otorga la habilidad Disparo certero nivel (\\S+)$" + }, + "8": { + "#": "^(\\S+)레벨 저격 스킬 부여$" + } + } + }, "stat_1493091477": { "id": "local_has_no_sockets", "negated": false, @@ -72276,6 +72876,36 @@ } } }, + "stat_248646071": { + "id": "local_display_socketed_gems_supported_by_level_x_item_quantity", + "negated": false, + "text": { + "1": { + "#": "^Socketed Gems are Supported by Level (\\S+) Item Quantity$" + }, + "2": { + "#": "^Gemas Encaixadas são Suportadas por Quantidade de Itens Nível (\\S+)$" + }, + "3": { + "#": "^Размещённые камни усилены Количеством предметов (\\S+) уровня$" + }, + "4": { + "#": "^หินที่ใส่ไว้จะถูกเสริมด้วย Item Quantity เลเวล (\\S+)$" + }, + "5": { + "#": "^Eingefasste Gemmen werden unterstützt durch 'Gegenstandsmenge' Stufe (\\S+)$" + }, + "6": { + "#": "^Les Gemmes Enchâssées sont modifiées par Quantité d'Objets \\(Niveau (\\S+)\\)$" + }, + "7": { + "#": "^Las Gemas Engarzadas son Asistidas por Cantidad de Objetos Nivel (\\S+)$" + }, + "8": { + "#": "^장착된 젬에 (\\S+)레벨 아이템 드롭 증가 보조 효과 적용$" + } + } + }, "stat_3587013273": { "id": "local_display_socketed_gems_supported_by_level_x_item_rarity", "negated": false, @@ -73026,6 +73656,36 @@ } } }, + "stat_3282302743": { + "id": "local_display_socketed_gems_supported_by_level_x_snipe", + "negated": false, + "text": { + "1": { + "#": "^Socketed Non-Channelling Bow Skills are Triggered by Snipe$" + }, + "2": { + "#": "^Habilidades de Arco não Canalizáveis são Ativadas por Atirador$" + }, + "3": { + "#": "^Прицельный выстрел вызывает срабатывание размещенных неподдерживаемых умений лука$" + }, + "4": { + "#": "^สกิล ธนู ที่ไม่ใช่แชนเนลที่ถูกใส่ไว้จะถูกใช้งานเองจากสกิล Snipe$" + }, + "5": { + "#": "^Eingefasste Bogen-Fertigkeiten \\(Kanalisierungsfertigkeiten ausgenommen\\) werden ausgelöst durch 'Scharfschuss'$" + }, + "6": { + "#": "^Les Aptitudes non Canalisées d'arc Enchâssées sont déclenchées par Rafale$" + }, + "7": { + "#": "^Disparo certero activa las habilidades de arco engarzadas que no son de canalización$" + }, + "8": { + "#": "^장착된 비-집중 유지 활 스킬이 저격에 의해 발동$" + } + } + }, "stat_503990161": { "id": "local_display_socketed_gems_supported_by_level_x_spell_cascade", "negated": false, @@ -75352,6 +76012,44 @@ } } }, + "stat_440248135": { + "id": "local_display_assailum_socketed_gems_damage_+%_final", + "negated": false, + "text": { + "1": { + "1|#": "^Socketed Triggered Bow Skills deal (\\S+)% more Damage$", + "N#|-1": "^Socketed Triggered Bow Skills deal (\\S+)% less Damage$" + }, + "2": { + "1|#": "^Habilidades Ativadas de Arco Encaixadas causam (\\S+)% mais Dano$", + "N#|-1": "^Habilidades Ativadas de Arco Encaixadas causam (\\S+)% menos Dano$" + }, + "3": { + "1|#": "^Размещенные срабатываемые умения лука наносят на (\\S+)% больше урона$", + "N#|-1": "^Размещенные срабатываемые умения лука наносят на (\\S+)% меньше урона$" + }, + "4": { + "1|#": "^สกิล ธนู ที่ใส่ไว้ที่ถูกใช้งานเองจะ เพิ่มความเสียหาย อีก (\\S+)%$", + "N#|-1": "^สกิล ธนู ที่ใส่ไว้ที่ถูกใช้งานเองจะ ลดความเสียหาย อีก (\\S+)%$" + }, + "5": { + "1|#": "^Eingefasste ausgelöste Bogen-Fertigkeiten verursachen (\\S+)% mehr Schaden$", + "N#|-1": "^Eingefasste ausgelöste Bogen-Fertigkeiten verursachen (\\S+)% weniger Schaden$" + }, + "6": { + "1|#": "^Les Aptitudes d'arc Enchâssées qui sont déclenchées ont (\\S+)% Davantage de Dégâts$", + "N#|-1": "^Les Aptitudes d'arc Enchâssées qui sont déclenchées ont (\\S+)% de Perte de Dégâts$" + }, + "7": { + "1|#": "^Las habilidades de arco activadas engarzadas infligen un (\\S+)% más de daño$", + "N#|-1": "^Las habilidades de arco activadas engarzadas infligen un (\\S+)% menos de daño$" + }, + "8": { + "1|#": "^장착된 발동형 활 스킬이 주는 피해 (\\S+)% 증폭$", + "N#|-1": "^장착된 발동형 활 스킬이 주는 피해 (\\S+)% 감폭$" + } + } + }, "stat_1970781345": { "id": "local_display_socketed_attack_damage_+%_final", "negated": false, @@ -77441,6 +78139,36 @@ } } }, + "stat_1749783861": { + "id": "local_display_grants_skill_embrace_madness_level", + "negated": false, + "text": { + "1": { + "1|#": "^Grants Level (\\S+) Embrace Madness Skill$" + }, + "2": { + "1|#": "^Concede a Habilidade Abraçar a Loucura Nível (\\S+)$" + }, + "3": { + "1|#": "^Дарует умение Принятие безумия (\\S+) уровня$" + }, + "4": { + "1|#": "^ได้รับสกิล Embrace Madness เลเวล (\\S+)$" + }, + "5": { + "1|#": "^Gewährt die Fertigkeit 'Dem Wahnsinn verfallen' Stufe (\\S+)$" + }, + "6": { + "1|#": "^Octroie l'Aptitude Accepter la démence \\(Niveau (\\S+)\\)$" + }, + "7": { + "1|#": "^Otorga la habilidad Aceptar la locura nivel (\\S+)$" + }, + "8": { + "1|#": "^(\\S+)레벨 광기의 수용 스킬 사용 가능$" + } + } + }, "stat_1031644844": { "id": "local_display_grants_skill_enduring_cry_level", "negated": false, @@ -89222,6 +89950,36 @@ } } }, + "stat_776020689": { + "id": "local_flask_lose_all_charges_on_entering_new_area", + "negated": false, + "text": { + "1": { + "#": "^Loses all Charges when you enter a new area$" + }, + "2": { + "#": "^Perde todas as Cargas ao entrar em uma nova área$" + }, + "3": { + "#": "^Теряет все заряды, когда вы входите в новую область$" + }, + "4": { + "#": "^สูญเสียชาร์จทั้งหมดเมื่อเปลี่ยนพื้นที่$" + }, + "5": { + "#": "^Verliert beim Betreten eines neuen Gebiets alle Füllungen$" + }, + "6": { + "#": "^Perd toutes ses Charges lorsque vous entrez dans une nouvelle Zone$" + }, + "7": { + "#": "^Pierde todas las cargas cuando entras en un área nueva$" + }, + "8": { + "#": "^새로운 지역에 들어가면 모든 충전 상실$" + } + } + }, "stat_1431238626": { "id": "local_physical_damage_%_to_convert_to_a_random_element", "negated": false, @@ -89396,6 +90154,36 @@ } } }, + "stat_3086156145": { + "id": "local_jewel_expansion_passive_node_count", + "negated": false, + "text": { + "1": { + "#": "^Adds (\\S+) Passive Skills$" + }, + "2": { + "#": "^Adiciona (\\S+)1 Habilidades Passivas$" + }, + "3": { + "#": "^Добавляет пассивных умений: (\\S+)$" + }, + "4": { + "#": "^เพิ่มพาสซีพ (\\S+) จุด$" + }, + "5": { + "#": "^Fügt (\\S+) passive Fertigkeiten hinzu$" + }, + "6": { + "#": "^Ajoute (\\S+) Talents passifs$" + }, + "7": { + "#": "^Agrega (\\S+) habilidades pasivas$" + }, + "8": { + "#": "^패시브 스킬 (\\S+)개 추가$" + } + } + }, "stat_2453554491": { "id": "local_minimum_added_fire_damage_vs_bleeding_enemies local_maximum_added_fire_damage_vs_bleeding_enemies", "negated": false, @@ -90126,6 +90914,9756 @@ } } }, + "stat_2557943734": { + "id": "local_affliction_jewel_display_small_nodes_grant_nothing", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills grant Nothing$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas não conedem Nada$" + }, + "3": { + "#": "^Добавленные малые пассивные умения ничего не дают$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะไม่ให้อะไรเลย$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren nichts$" + }, + "6": { + "#": "^Ajoute des Talents passifs mineurs qui n'octroient rien$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas no otorgan nada$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 아무것도 부여하지 않음$" + } + } + }, + "stat_4036575250": { + "id": "local_affliction_jewel_small_nodes_grant_all_attributes", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+) to All Attributes$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: (\\S+) de Todos os Atributos$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+) ко всем характеристикам$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ค่า คุณสมบัติทั้งหมด (\\S+)$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+) zu allen Attributen$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également : (\\S+) à tous les Attributs$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: (\\S+) a todos los atributos$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 모든 능력치 (\\S+) 부여$" + } + } + }, + "stat_2554466725": { + "id": "local_affliction_jewel_small_nodes_grant_armour", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+) to Armour$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: (\\S+) de Armadura$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+) к броне$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ค่า เกราะ (\\S+)$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+) zu Rüstung$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également : (\\S+) à l'Armure$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: (\\S+) a la armadura$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 방어도 (\\S+) 부여$" + } + } + }, + "stat_3262895685": { + "id": "local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_while_affected_by_a_herald", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Attack and Cast Speed while affected by a Herald$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Velocidade de Ataque e Conjuração aumentada em (\\S+)% enquanto você for afetado por um Arauto$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% повышение скорости атаки и сотворения чар под действием Вестника$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ความเร็วในการโจมตีและร่าย (\\S+)% ขณะได้รับผลจาก สาส์น$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% erhöhte Angriffs- und Zaubergeschwindigkeit während unter dem Einfluss eines Herolds$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de la Vitesse d'attaque et d'incantation tant qu'une aptitude de Héraut vous affecte$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: Velocidad de ataque y de lanzamiento de hechizos aumentadas un (\\S+)% mientras estás afectado por un Heraldo$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 전령의 영향을 받는 동안 공격 및 시전 속도 (\\S+)% 증가$" + } + } + }, + "stat_3799759054": { + "id": "local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_channelling_skills", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: Channelling Skills have (\\S+)% increased Attack and Cast Speed$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Habilidades Canalizadas têm Velocidade de Ataque e Conjuração aumentada (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: умения поддержания имеют (\\S+)% повышение скорости атаки и сотворения чар$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: เพิ่มความเร็วในการโจมตีและร่ายของสกิล แชนเนล (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: Kanalisierungsfertigkeiten haben (\\S+)% erhöhte Angriffs- und Zaubergeschwindigkeit$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de la Vitesse d'attaque et d'incantation des Aptitudes de Canalisation$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: Las habilidades de canalización tienen sus velocidades de ataque y de lanzamiento de hechizos aumentadas un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 집중 유지 스킬의 공격 및 시전 속도 (\\S+)% 증가$" + } + } + }, + "stat_3692167527": { + "id": "local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_chaos_skills", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Attack and Cast Speed with Chaos Skills$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Velocidade de Ataque e Conjuração com Habilidades de Caos aumentada em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% повышение скорости атаки и сотворения чар умениями хаоса$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ความเร็วในการโจมตีและร่าย ด้วยสกิล เคออส (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% erhöhte Angriffs- und Zaubergeschwindigkeit mit Chaosfertigkeiten$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de la Vitesse d'attaque et d'incantation des Aptitudes de chaos$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: Las habilidades de caos tienen sus velocidades de ataque y de lanzamiento de hechizos aumentadas un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 카오스 스킬의 공격 및 시전 속도 (\\S+)% 증가$" + } + } + }, + "stat_2054530657": { + "id": "local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_cold_skills", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Attack and Cast Speed with Cold Skills$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Velocidade de Ataque e Conjuração com Habilidades de Gelo aumentada em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% повышение скорости атаки и сотворения чар умениями холода$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ความเร็วในการโจมตีและร่าย ด้วยสกิล น้ำแข็ง (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% erhöhte Angriffs- und Zaubergeschwindigkeit mit Kältefertigkeiten$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de la Vitesse d'attaque et d'incantation des Aptitudes de froid$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: Las habilidades de hielo tienen sus velocidades de ataque y de lanzamiento de hechizos aumentadas un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 냉기 스킬의 공격 및 시전 속도 (\\S+)% 증가$" + } + } + }, + "stat_2699118751": { + "id": "local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_elemental_skills", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Attack and Cast Speed with Elemental Skills$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Velocidade de Ataque e Conjuração com Habilidades Elementais aumentada em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% повышение скорости атаки и сотворения чар умениями стихий$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ความเร็วในการโจมตีและร่าย ด้วยสกิล ธาตุ (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% erhöhte Angriffs- und Zaubergeschwindigkeit mit Elementarfertigkeiten$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de la Vitesse d'attaque et d'incantation des Aptitudes élémentaires$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: Las habilidades elementales tienen sus velocidades de ataque y de lanzamiento de hechizos aumentadas un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 원소 스킬의 공격 및 시전 속도 (\\S+)% 증가$" + } + } + }, + "stat_1849042097": { + "id": "local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_fire_skills", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Attack and Cast Speed with Fire Skills$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Velocidade de Ataque e Conjuração com Habilidades de Fogo aumentada em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% повышение скорости атаки и сотворения чар умениями огня$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ความเร็วในการโจมตีและร่าย ด้วยสกิล ไฟ (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% erhöhte Angriffs- und Zaubergeschwindigkeit mit Feuerfertigkeiten$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de la Vitesse d'attaque et d'incantation des Aptitudes de feu$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: Las habilidades de fuego tienen sus velocidades de ataque y de lanzamiento de hechizos aumentadas un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 화염 스킬의 공격 및 시전 속도 (\\S+)% 증가$" + } + } + }, + "stat_201731102": { + "id": "local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_lightning_skills", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Attack and Cast Speed with Lightning Skills$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Velocidade de Ataque e Conjuração com Habilidades de Raio aumentada em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% повышение скорости атаки и сотворения чар умениями молнии$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ความเร็วในการโจมตีและร่าย ด้วยสกิล สายฟ้า (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% erhöhte Angriffs- und Zaubergeschwindigkeit mit Blitzfertigkeiten$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de la Vitesse d'attaque et d'incantation des Aptitudes de foudre$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: Las habilidades de rayo tienen sus velocidades de ataque y de lanzamiento de hechizos aumentadas un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 번개 스킬의 공격 및 시전 속도 (\\S+)% 증가$" + } + } + }, + "stat_1903097619": { + "id": "local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_physical_skills", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Attack and Cast Speed with Physical Skills$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Velocidade de Ataque e Conjuração com Habilidades Físicas aumentada em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% повышение скорости атаки и сотворения чар физическими умениями$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ความเร็วในการโจมตีและร่าย ด้วยสกิล กายภาพ (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% erhöhte Angriffs- und Zaubergeschwindigkeit mit physischen Fertigkeiten$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de la Vitesse d'attaque et d'incantation des Aptitudes physiques$" + }, + "7": { + "#": "^las habilidades pasivas pequeñas agregadas también otorgan: Las habilidades físicas tienen sus velocidades de ataque y de lanzamiento de hechizos aumentadas un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 물리 스킬의 공격 및 시전 속도 (\\S+)% 증가$" + } + } + }, + "stat_1411310186": { + "id": "local_affliction_jewel_small_nodes_grant_attack_speed_+%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Attack Speed$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Velocidade de Ataque aumentada em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% повышение скорости атаки$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ความเร็วในการโจมตี (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% erhöhte Angriffsgeschwindigkeit$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de la Vitesse d'attaque$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: velocidad de ataque aumentada un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 공격 속도 (\\S+)% 증가$" + } + } + }, + "stat_2642917409": { + "id": "local_affliction_jewel_small_nodes_grant_base_aura_area_of_effect_+%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Area of Effect of Aura Skills$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Área de Efeito de Habilidades de Aura aumentada em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% увеличение области действия умений аур$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: เพิ่มพื้นที่ส่งผลของ ออร่า (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% vergrößerter Wirkungsbereich von Aura-Fertigkeiten$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de la Zone d'effet des Aptitudes d'Aura$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: área de efecto de las habilidades de aura aumentada un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 오라 스킬의 효과 범위 (\\S+)% 증가$" + } + } + }, + "stat_1195353227": { + "id": "local_affliction_jewel_small_nodes_grant_base_cast_speed_+%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Cast Speed$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Velocidade de Conjuração aumentada em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% повышение скорости сотворения чар$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: เพิ่มความเร็วในการร่าย (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% erhöhte Zaubergeschwindigkeit$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de la Vitesse d'incantation$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: velocidad de lanzamiento de hechizos aumentada un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 시전 속도 (\\S+)% 증가$" + } + } + }, + "stat_1926135629": { + "id": "local_affliction_jewel_small_nodes_grant_base_critical_strike_multiplier_+", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% to Critical Strike Multiplier$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: (\\S+)% de Multiplicador de Golpe Crítico$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% к множителю критического удара$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ตัวคูณคริติคอล (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% zu Multiplikator für kritische Treffer$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% au Multiplicateur de critique$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: (\\S+)% al multiplicador de golpe crítico$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 치명타 피해 배율 (\\S+)% 부여$" + } + } + }, + "stat_3338465330": { + "id": "local_affliction_jewel_small_nodes_grant_base_elemental_status_ailment_duration_+%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Duration of Elemental Ailments on Enemies$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Duração de Afecções Elementais em Inimigos aumentada em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% увеличение длительности стихийных состояний на врагах$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: เพิ่มระยะเวลาของสถานะเจ็บป่วยที่คุณสร้างต่อศัตรู (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% verlängerte Dauer von elementaren Beeinträchtigungen bei Gegnern$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de la Durée des Altérations affectant les Ennemis$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: duración de los achaques elementales aumentada un (\\S+)% en los enemigos$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 적의 원소 상태 이상 지속시간 (\\S+)% 증가$" + } + } + }, + "stat_679080252": { + "id": "local_affliction_jewel_small_nodes_grant_base_projectile_speed_+%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Projectile Speed$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Velocidade de Projétil aumentada em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% повышение скорости снарядов$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: เพิ่มความเร็วกระสุน (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% erhöhte Projektilgeschwindigkeit$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de la Vitesse des Projectiles$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: velocidad de proyectiles aumentada un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 투사체 속도 (\\S+)% 증가$" + } + } + }, + "stat_713280739": { + "id": "local_affliction_jewel_small_nodes_grant_base_skill_area_of_effect_+%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Area of Effect$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Área de Efeito aumentada em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% увеличение области действия$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: เพิ่มพื้นที่ส่งผล (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% vergrößerter Wirkungsbereich$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de Zone d'effet$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: área de efecto aumentada un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 효과 범위 (\\S+)% 증가$" + } + } + }, + "stat_1811604576": { + "id": "local_affliction_jewel_small_nodes_grant_chaos_resistance_%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% to Chaos Resistance$" + }, + "2": { + "#": "^Habilidades Passivas adicionadas também concedem: (\\S+)% de Resistência a Caos$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% к сопротивлению хаосу$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ต้านทาน เคออส (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% zu Chaoswiderstand$" + }, + "6": { + "#": "^Les Talents mineurs ajoutés octroient également (\\S+)% de Résistance au chaos$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: (\\S+)% a la resistencia al caos$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 카오스 저항 (\\S+)% 부여$" + } + } + }, + "stat_3187805501": { + "id": "local_affliction_jewel_small_nodes_grant_charges_gained_+%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Flask Charges gained$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Cargas de Frasco ganhadas aumentadas em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% увеличение получаемого количества зарядов флакона$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: เพิ่มชาร์จขวดยาที่ได้รับ (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% erhöhte Anzahl erhaltener Fläschchenfüllungen$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation du gain de charges de Flacon$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: cargas de frascos ganadas aumentadas un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 플라스크 충전 획득 (\\S+)% 증가$" + } + } + }, + "stat_2709692542": { + "id": "local_affliction_jewel_small_nodes_grant_cold_resistance_%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% to Cold Resistance$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: (\\S+) de Resistência a Gelo$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% к сопротивлению холоду$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ต้านทาน น้ำแข็ง (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% zu Kältewiderstand$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également : (\\S+)% à la Résistance au froid$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: (\\S+) a la resistencia al hielo$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 냉기 저항 (\\S+)% 부여$" + } + } + }, + "stat_2138819920": { + "id": "local_affliction_jewel_small_nodes_grant_curse_area_of_effect_+%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Area of Effect of Curse Skills$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Área de Efeito de Habilidades de Maldição aumentada em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% увеличение области действия умений проклятий$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: เพิ่มพื้นที่ส่งผลของ คำสาป (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% vergrößerter Wirkungsbereich von Fluchfertigkeiten$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de Zone d'effet des Aptitudes de Malédiction$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: área de efecto de las habilidades de maldiciones aumentada un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 저주 스킬의 효과 범위 (\\S+)% 증가$" + } + } + }, + "stat_2401834120": { + "id": "local_affliction_jewel_small_nodes_grant_damage_over_time_+%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Damage over Time$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Dano Degenerativo aumentado em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% увеличение постепенного урона$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: เพิ่มความเสียหาย ต่อเนื่อง (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% erhöhter Schaden über Zeit$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation des Dégâts sur la durée$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: daño degenerativo aumentado un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 지속 피해 (\\S+)% 증가$" + } + } + }, + "stat_1719521705": { + "id": "local_affliction_jewel_small_nodes_grant_damage_+%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Damage$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Dano aumentado em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% увеличение урона$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: เพิ่มความเสียหาย (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% erhöhter Schaden$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également : (\\S+)% d'Augmentation de Dégâts$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: Daño aumentado un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 주는 피해 (\\S+)% 증가$" + } + } + }, + "stat_2090413987": { + "id": "local_affliction_jewel_small_nodes_grant_dex", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+) to Dexterity$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: (\\S+) de Destreza$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+) к ловкости$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ค่า Dexterity (\\S+)$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+) zu Geschick$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également : (\\S+) de Dextérité$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: (\\S+) a la destreza$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 민첩 (\\S+) 부여$" + } + } + }, + "stat_2669029667": { + "id": "local_affliction_jewel_small_nodes_grant_elemental_resistance_%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% to Elemental Resistance$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: (\\S+) de Resistência Elemental$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% к сопротивлению стихиям$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ต้านทาน ทุกธาตุ (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% zu Elementarwiderstand$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également : (\\S+)% à toutes les Résistances élémentaires$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: (\\S+) a la resistencia elemental$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 원소 저항 (\\S+)% 부여$" + } + } + }, + "stat_4100161067": { + "id": "local_affliction_jewel_small_nodes_grant_evasion", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+) to Evasion$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: (\\S+) de Evasão$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+) к уклонению$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ค่า หลบหลีก (\\S+)$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+) zu Ausweichen$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également : (\\S+) à l'Évasion$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: (\\S+) a la evasión$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 회피 (\\S+) 부여$" + } + } + }, + "stat_1790411851": { + "id": "local_affliction_jewel_small_nodes_grant_fire_resistance_%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% to Fire Resistance$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: (\\S+) de Resistência a Fogo$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% к сопротивлению огню$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ต้านทาน ไฟ (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% zu Feuerwiderstand$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également : (\\S+) à la Résistance au feu$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: (\\S+) a la resistencia al fuego$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 화염 저항 (\\S+)% 부여$" + } + } + }, + "stat_724930776": { + "id": "local_affliction_jewel_small_nodes_grant_int", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+) to Intelligence$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: (\\S+) de Inteligência$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+) к интеллекту$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ค่า Intelligence (\\S+)$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+) zu Intelligenz$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également : (\\S+) d'Intelligence$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: (\\S+) a la inteligencia$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 지능 (\\S+) 부여$" + } + } + }, + "stat_2250780084": { + "id": "local_affliction_jewel_small_nodes_grant_lightning_resistance_%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% to Lightning Resistance$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: (\\S+) de Resistência a Raio$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% к сопротивлению молнии$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ต้านทาน สายฟ้า (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% zu Blitzwiderstand$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également : (\\S+)% à la Résistance à la foudre$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: (\\S+) a la resistencia al rayo$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 번개 저항 (\\S+)% 부여$" + } + } + }, + "stat_2474836297": { + "id": "local_affliction_jewel_small_nodes_grant_mana_regeneration_+%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Mana Regeneration Rate$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Taxa de Regeneração de Mana aumentada em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% повышение скорости регенерации маны$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: เพิ่มอัตราการฟื้นฟูมานา (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% erhöhte Manaregenerations-Rate$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également : (\\S+)% d'Augmentation du Taux de Régénération du Mana$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: Índice de regeneración de maná aumentado un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 마나 재생 속도 (\\S+)% 증가$" + } + } + }, + "stat_2643685329": { + "id": "local_affliction_jewel_small_nodes_grant_maximum_energy_shield", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+) to Maximum Energy Shield$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: (\\S+) de Escudo de Energia Máximo$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+) к максимуму энергетического щита$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ค่า โล่พลังงานสูงสุด (\\S+)$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+) zu maximalem Energieschild$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également : (\\S+) de Bouclier d'énergie maximal$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: (\\S+) al escudo de energía máximo$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 에너지 보호막 최대치 (\\S+) 부여$" + } + } + }, + "stat_3819827377": { + "id": "local_affliction_jewel_small_nodes_grant_maximum_life", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+) to Maximum Life$" + }, + "2": { + "#": "^Habilidades Passivas adicionadas também concedem: (\\S+) de Vida Máxima$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+) к максимуму здоровья$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ค่า พลังชีวิตสูงสุด (\\S+)$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+) zu maximalem Leben$" + }, + "6": { + "#": "^Les Talents mineurs ajoutés octroient également (\\S+) de Vie maximale$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: (\\S+) a la vida máxima$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 최대 생명력 (\\S+) 부여$" + } + } + }, + "stat_3994193163": { + "id": "local_affliction_jewel_small_nodes_grant_maximum_mana", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+) to Maximum Mana$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: (\\S+) de Mana Máxima$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+) к максимуму маны$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ค่า มานาสูงสุด (\\S+)$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+) zu maximalem Mana$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également : (\\S+) de Mana maximal$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: (\\S+) al maná máximo$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 최대 마나 (\\S+) 부여$" + } + } + }, + "stat_2310019673": { + "id": "local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: Minions have (\\S+)% increased Attack and Cast Speed$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Lacaios têm Velocidade de Ataque e Conjuração aumentada em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: приспешники имеют (\\S+)% повышение скорости атаки и сотворения чар$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: เพิ่มความเร็วในการโจมตีและร่ายของ มิเนียน (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: Kreaturen haben (\\S+)% erhöhte Angriffs- und Zaubergeschwindigkeit$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de la Vitesse d'attaque et d'incantation de vos Créatures$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: Los esbirros tienen sus velocidades de ataque y de lanzamiento de hechizos aumentadas un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 소환수의 공격 및 시전 속도 (\\S+)% 증가$" + } + } + }, + "stat_1948127742": { + "id": "local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: Minions have (\\S+)% increased Attack and Cast Speed while you are affected by a Herald$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Lacaios têm Velocidade de Ataque e Conjuração aumentada em (\\S+)% enquanto você for afetado por um Arauto$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: приспешники имеют (\\S+)% повышение скорости атаки и сотворения чар, пока вы находитесь под действием Вестника$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: เพิ่มความเร็วในการโจมตีและร่ายของ มิเนียน (\\S+)% ขณะที่คุณได้รับผลจาก สาส์น$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: Kreaturen haben (\\S+)% erhöhte Angriffs- und Zaubergeschwindigkeit, während Ihr unter dem Einfluss eines Herolds steht$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de la Vitesse d'attaque et d'incantation de vos Créatures tant qu'une Aptitude de Héraut vous affecte$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: Los esbirros tienen sus velocidades de ataque y de lanzamiento de hechizos aumentadas un (\\S+)% mientras estés afectado por un heraldo$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 소환수가 전령의 영향을 받는 동안 공격 및 시전 속도 (\\S+)% 증가$" + } + } + }, + "stat_542238572": { + "id": "local_affliction_jewel_small_nodes_grant_minion_life_regeneration_rate_per_minute_%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: Minions Regenerate (\\S+)% of Life per Second$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Lacaios Regeneram (\\S+)% de Vida por Segundo$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: приспешники регенерируют (\\S+)% здоровья в секунду$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ฟื้นฟูพลังชีวิตของ มิเนียน (\\S+)% ต่อวินาที$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: Kreaturen regenerieren (\\S+)% des Lebens pro Sekunde$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% de Régénération de Vie par seconde à vos Créatures$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: los esbirros regeneran un (\\S+)% de vida por segundo$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 1초마다 소환수 생명력의 (\\S+)%만큼 소환수 생명력 재생$" + } + } + }, + "stat_3721672021": { + "id": "local_affliction_jewel_small_nodes_grant_%_life_regeneration_per_minute", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: Regenerate (\\S+)% of Life per Second$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Regenera (\\S+)% de Vida por Segundo$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: регенерация (\\S+)% здоровья в секунду$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ฟื้นฟูพลังชีวิต (\\S+)% ต่อวินาที$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: Regeneriert (\\S+)% des Lebens pro Sekunde$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également : Vous Régénérez (\\S+)% de Vie par seconde$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: Regenera (\\S+)% de vida por segundo$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 1초마다 생명력의 (\\S+)%만큼 재생$" + } + } + }, + "stat_2265469693": { + "id": "local_affliction_jewel_small_nodes_grant_sigil_target_search_range_+%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Brand Attachment range$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Alcance de Vínculo de Marca aumentado em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% увеличение дальности прикрепления клейма$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: เพิ่มระยะการเกาะของ ตราเวทย์ (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% erhöhte Zeichen-Anheftungsreichweite$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de Portée de ciblage des Symboles$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: rango de adhesión de Marcas aumentado un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 낙인 부착 범위 (\\S+)% 증가$" + } + } + }, + "stat_3258414199": { + "id": "local_affliction_jewel_small_nodes_grant_str", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+) to Strength$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: (\\S+) de Força$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+) к силе$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ค่า Strength (\\S+)$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+) zu Stärke$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également : (\\S+) de Force$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: (\\S+) a la fuerza$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 힘 (\\S+) 부여$" + } + } + }, + "stat_1588674629": { + "id": "local_affliction_jewel_small_nodes_grant_summon_totem_cast_speed_+%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Totem Placement speed$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Velocidade de Posicionamento de Totem aumentada em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% повышение скорости установки тотемов$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: เพิ่มความเร็วในการเสกโทเทม (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% erhöhte Totem-Platzierungsgeschwindigkeit$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de la Vitesse de placement des Totems$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: velocidad de colocación de tótems aumentada un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 토템 설치 속도 (\\S+)% 증가$" + } + } + }, + "stat_2135246244": { + "id": "local_affliction_jewel_small_nodes_grant_trap_and_mine_throwing_speed_+%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Trap and Mine Throwing Speed$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Velocidade de Arremesso de Armadilha e Mina aumentada em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% повышение скорости броска ловушки и мины$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: เพิ่มความเร็วในการโยนกับดักและทุ่นระเบิด (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% erhöhte Fallen- und Minen-Wurfgeschwindigkeit$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de la Vitesse de Jet des Pièges et Mines$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: velocidad de lanzamiento de trampas y minas aumentada un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 덫과 지뢰 투척 속도 (\\S+)% 증가$" + } + } + }, + "stat_2596487673": { + "id": "local_affliction_jewel_small_nodes_grant_warcry_duration_+%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills also grant: (\\S+)% increased Warcry Duration$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas Adicionadas também concedem: Duração do Clamor aumentada em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения также даруют: (\\S+)% увеличение длительности боевых кличей$" + }, + "4": { + "#": "^พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามาจะมอบ: ระยะเวลาของสกิล คำราม (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten gewähren auch: (\\S+)% verlängerte Kriegsschrei-Dauer$" + }, + "6": { + "#": "^Les Talents passifs mineurs ajoutés octroient également (\\S+)% d'Augmentation de la Durée des Cris de guerre$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas también otorgan: Duración de gritos de guerra aumentada un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬이 함성 지속시간 (\\S+)% 증가$" + } + } + }, + "stat_2618549697": { + "id": "local_affliction_jewel_small_nodes_have_effect_+%", + "negated": false, + "text": { + "1": { + "#": "^Added Small Passive Skills have (\\S+)% increased Effect$" + }, + "2": { + "#": "^Pequenas Habilidades Passivas adicionadas possuem Efeito aumentado em (\\S+)%$" + }, + "3": { + "#": "^Добавленные малые пассивные умения имеют (\\S+)% усиление эффекта$" + }, + "4": { + "#": "^เพิ่มผลของ พาสซีพขนาดเล็กที่ถูกเพิ่มเข้ามา (\\S+)%$" + }, + "5": { + "#": "^Hinzugefügte kleine passive Fertigkeiten haben (\\S+)% erhöhte Wirkung$" + }, + "6": { + "#": "^Les Talents mineurs ajoutés ont (\\S+)% d'Augmentation d'Effet$" + }, + "7": { + "#": "^Las habilidades pasivas pequeñas agregadas tienen efecto aumentado un (\\S+)%$" + }, + "8": { + "#": "^추가되는 소형 패시브 스킬의 효과 (\\S+)% 증가$" + } + } + }, + "stat_4022743870": { + "id": "local_affliction_notable_adrenaline", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Adrenaline$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Adrenalina$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Адреналин$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Adrenaline$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Adrenalin$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Adrénaline$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Adrenalina$" + }, + "8": { + "#": "^아드레날린 패시브 스킬 1개 추가$" + } + } + }, + "stat_1625939562": { + "id": "local_affliction_notable_advance_guard", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Advance Guard$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Guarda Avançada$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Оборона наступлением$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Advance Guard$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Schildmeister$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Avant-garde$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Avanzadilla$" + }, + "8": { + "#": "^선발대 패시브 스킬 1개 추가$" + } + } + }, + "stat_3848677307": { + "id": "local_affliction_notable_aerialist", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Aerialist$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Trapezista$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Акробат$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Aerialist$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Luftakrobat$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Voltigeur$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Equilibrista$" + }, + "8": { + "#": "^공중 곡예 패시브 스킬 1개 추가$" + } + } + }, + "stat_4120556534": { + "id": "local_affliction_notable_aerodynamics", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Aerodynamics$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Aerodinâmica$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Аэродинамика$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Aerodynamics$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Aerodynamik$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Aérodynamique$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Aerodinámica$" + }, + "8": { + "#": "^공기 역학 패시브 스킬 1개 추가$" + } + } + }, + "stat_3122491961": { + "id": "local_affliction_notable_agent_of_destruction", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Agent of Destruction$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Agente da Destruição$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Посредник разрушения$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Agent of Destruction$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Bote der Zerstörung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Agent de la destruction$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Agente de destrucción$" + }, + "8": { + "#": "^파괴의 요원 패시브 스킬 1개 추가$" + } + } + }, + "stat_2912949210": { + "id": "local_affliction_notable_alchemist", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Alchemist$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Alquimista$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Алхимик$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Alchemist$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Alchemist$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Alchimiste$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Alquimista$" + }, + "8": { + "#": "^연금술사 패시브 스킬 1개 추가$" + } + } + }, + "stat_957679205": { + "id": "local_affliction_notable_ancestral_echo", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Ancestral Echo$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Eco Ancestral$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Эхо предков$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Ancestral Echo$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Echo der Ahnen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Écho ancestral$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Eco ancestral$" + }, + "8": { + "#": "^선대의 메아리 패시브 스킬 1개 추가$" + } + } + }, + "stat_2387747995": { + "id": "local_affliction_notable_ancestral_guidance", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Ancestral Guidance$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Guia Ancestral$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Наставление предков$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Ancestral Guidance$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Rat der Ahnen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Préceptes ancestraux$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Guía ancestral$" + }, + "8": { + "#": "^선대의 인도 패시브 스킬 1개 추가$" + } + } + }, + "stat_77045106": { + "id": "local_affliction_notable_ancestral_inspiration", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Ancestral Inspiration$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Inspiração Ancestral$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Вдохновение предков$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Ancestral Inspiration$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Inspiration der Ahnen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Inspiration ancestrale$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Inspiración ancestral$" + }, + "8": { + "#": "^선대의 영감 패시브 스킬 1개 추가$" + } + } + }, + "stat_3998316": { + "id": "local_affliction_notable_ancestral_might", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Ancestral Might$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Poder Ancestral$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Мощь предков$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Ancestral Might$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Macht der Ahnen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Puissance ancestrale$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Poderío ancestral$" + }, + "8": { + "#": "^선대의 완력 패시브 스킬 1개 추가$" + } + } + }, + "stat_3746703776": { + "id": "local_affliction_notable_ancestral_preservation", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Ancestral Preservation$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Preservação Ancestral$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Охрана предков$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Ancestral Preservation$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Schutz der Ahnen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Préservation ancestrale$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Preservación ancestral$" + }, + "8": { + "#": "^선대의 보전 패시브 스킬 1개 추가$" + } + } + }, + "stat_3294884567": { + "id": "local_affliction_notable_ancestral_reach", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Ancestral Reach$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Alcance Ancestral$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Охват предков$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Ancestral Reach$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Einfluss der Ahnen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Allonge ancestrale$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Alcance ancestral$" + }, + "8": { + "#": "^선대의 능력 패시브 스킬 1개 추가$" + } + } + }, + "stat_2622946553": { + "id": "local_affliction_notable_antifreeze", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Antifreeze$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Anti-Congelante$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Незамораживаемость$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Antifreeze$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Frostschutz$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Antigel$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Anticongelante$" + }, + "8": { + "#": "^동결 방지 패시브 스킬 1개 추가$" + } + } + }, + "stat_774369953": { + "id": "local_affliction_notable_antivenom", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Antivenom$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Antidoto$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Противояд$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Antivenom$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Gegengift$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Antivenin$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Antiveneno$" + }, + "8": { + "#": "^독소 방지 패시브 스킬 1개 추가$" + } + } + }, + "stat_393565679": { + "id": "local_affliction_notable_arcane_focus", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Arcane Adept$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Adepto Arcano$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Адепт колдовства$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Arcane Adept$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Arkaner Meister$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Adepte des arcanes$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Adepto arcano$" + }, + "8": { + "#": "^비전 권위자 패시브 스킬 1개 추가$" + } + } + }, + "stat_3901992019": { + "id": "local_affliction_notable_arcane_heroism", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Arcane Heroism$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Heroísmo Arcano$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Колдовская доблесть$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Arcane Heroism$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Arkaner Heldenmut$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Héroïsme arcanique$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Heroísmo arcano$" + }, + "8": { + "#": "^비전 영웅 패시브 스킬 1개 추가$" + } + } + }, + "stat_2043503530": { + "id": "local_affliction_notable_arcane_pyrotechnics", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Arcane Pyrotechnics$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Pirotecnias Arcanas$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Колдовская пиротехника$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Arcane Pyrotechnics$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Arkane Pyrotechnik$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Pyrotechnie arcanique$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Pirotécnia arcana$" + }, + "8": { + "#": "^비전 불꽃 패시브 스킬 1개 추가$" + } + } + }, + "stat_3212859169": { + "id": "local_affliction_notable_arcing_shot", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Arcing Shot$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Tiro Arqueador$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Искристый выстрел$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Arcing Shot$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Distanzschuss$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Tir en ricochet$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Disparo curvo$" + }, + "8": { + "#": "^전호 사격 패시브 스킬 1개 추가$" + } + } + }, + "stat_4222265138": { + "id": "local_affliction_notable_assert_dominance", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Assert Dominance$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Domínio Assertivo$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Утвержденное господство$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Assert Dominance$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Territoriale Überlegenheit$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Asseoir sa dominance$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Imponer tu dominio$" + }, + "8": { + "#": "^지배력 행사 패시브 스킬 1개 추가$" + } + } + }, + "stat_2428334013": { + "id": "local_affliction_notable_astonishing_affliction", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Astonishing Affliction$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Aflição Surpreendente$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Удивительный недуг$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Astonishing Affliction$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Bitteres Leid$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Affliction stupéfiante$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Aflicción sorprendente$" + }, + "8": { + "#": "^경이적인 고통 패시브 스킬 1개 추가$" + } + } + }, + "stat_3084359503": { + "id": "local_affliction_notable_basics_of_pain", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Basics of Pain$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Básicos da Dor$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Основы боли$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Basics of Pain$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Grundlagen des Schmerzes$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Rudiments de la douleur$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Principios básicos del dolor$" + }, + "8": { + "#": "^고통의 밑바닥 패시브 스킬 1개 추가$" + } + } + }, + "stat_4188581520": { + "id": "local_affliction_notable_battle_hardened", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Battle-Hardened$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Endurecido Pela Batalha$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Закаленный в битве$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Battle-Hardened$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Kampfgestählt$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Aguerri$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Endurecido por la batalla$" + }, + "8": { + "#": "^전투 단련 패시브 스킬 1개 추가$" + } + } + }, + "stat_1499057234": { + "id": "local_affliction_notable_battlefield_dominator", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Battlefield Dominator$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Dominador do Campo de Batalha$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Повелитель поля боя$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Battlefield Dominator$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Beherrscher des Schlachtfelds$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Dominateur du champ de bataille$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Dominador del campo de batalla$" + }, + "8": { + "#": "^전장의 지배자 패시브 스킬 1개 추가$" + } + } + }, + "stat_1127706436": { + "id": "local_affliction_notable_blacksmith", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Blacksmith$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Ferreiro$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Кузнец$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Blacksmith$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Schmied$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Forgeron$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Herrero$" + }, + "8": { + "#": "^대장장이 패시브 스킬 1개 추가$" + } + } + }, + "stat_1085167979": { + "id": "local_affliction_notable_blanketed_snow", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Blanketed Snow$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Neve Coberta$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Снежный покров$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Blanketed Snow$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Schneedecke$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Manteau de neige$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Cubierta de nieve$" + }, + "8": { + "#": "^내려앉은 눈 패시브 스킬 1개 추가$" + } + } + }, + "stat_693808153": { + "id": "local_affliction_notable_blast_freeze", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Blast-Freeze$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Congelamento Explosivo$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Взрывной мороз$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Blast-Freeze$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Klirrende Kälte$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Souffle gelant$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Explosión congelada$" + }, + "8": { + "#": "^폭발-동결 패시브 스킬 1개 추가$" + } + } + }, + "stat_775689239": { + "id": "local_affliction_notable_blessed", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Blessed$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Abençoado$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Благословенный$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Blessed$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Gesegnet$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Béni$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Bendito$" + }, + "8": { + "#": "^축성 패시브 스킬 1개 추가$" + } + } + }, + "stat_1424794574": { + "id": "local_affliction_notable_blessed_rebirth", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Blessed Rebirth$" + }, + "2": { + "#": "^1 das Habilidades Passivas adicionadas é Renascimento Abençoado$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Благословенное возрождение$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Blessed Rebirth$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Gesegnete Wiedergeburt$" + }, + "6": { + "#": "^L'un des Talents passifs mineurs ajoutés est Renaissance bénie$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Renacimiento bendito$" + }, + "8": { + "#": "^신성한 부활 패시브 스킬 1개 추가$" + } + } + }, + "stat_3967765261": { + "id": "local_affliction_notable_bloodscent", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Bloodscent$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Cheiro de Sangue$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Запах крови$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Bloodscent$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Blutgeruch$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Effluves de sang$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Rastro de sangre$" + }, + "8": { + "#": "^혈향 패시브 스킬 1개 추가$" + } + } + }, + "stat_1612414696": { + "id": "local_affliction_notable_blowback", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Blowback$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Contragolpe$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Отдача$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Blowback$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Rückschlag$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Contrecoup$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Retroceso$" + }, + "8": { + "#": "^역류 패시브 스킬 1개 추가$" + } + } + }, + "stat_791125124": { + "id": "local_affliction_notable_bodyguards", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Bodyguards$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Guarda-Costas$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Телохранители$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Bodyguards$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Leibwächter$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Gardes du corps$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Guardaespaldas$" + }, + "8": { + "#": "^호위병 패시브 스킬 1개 추가$" + } + } + }, + "stat_2449392400": { + "id": "local_affliction_notable_born_of_chaos", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Born of Chaos$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Nascido do Caos$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Рожденный из хаоса$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Born of Chaos$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Im Chaos geboren$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Né du chaos$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Nacido del caos$" + }, + "8": { + "#": "^혼돈의 탄생 패시브 스킬 1개 추가$" + } + } + }, + "stat_3198006994": { + "id": "local_affliction_notable_brand_loyalty", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Brand Loyalty$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Marca da Lealdade$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Верность печатям$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Brand Loyalty$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Zeichen der Loyalität$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Loyauté symbolique$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Lealtad a las marcas$" + }, + "8": { + "#": "^충성의 방향 패시브 스킬 1개 추가$" + } + } + }, + "stat_3250272113": { + "id": "local_affliction_notable_brewed_for_potency", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Brewed for Potency$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Produzido para Potência$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Подготовленный потенциал$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Brewed for Potency$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Potentes Gebräu$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Distiller la puissance$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Elaborado por su potencia$" + }, + "8": { + "#": "^잠재력 발산 패시브 스킬 1개 추가$" + } + } + }, + "stat_2205982416": { + "id": "local_affliction_notable_broadside", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Broadside$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Fogo Lateral$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Бортовой залп$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Broadside$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Breitseite$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Bordée$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Ataque amplio$" + }, + "8": { + "#": "^측면 공격 패시브 스킬 1개 추가$" + } + } + }, + "stat_2900833792": { + "id": "local_affliction_notable_brush_with_death", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Brush with Death$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Pintando com a Morte$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Игры со смертью$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Brush with Death$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Begegnung mit dem Tod$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Frôler la mort$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Encuentro con la muerte$" + }, + "8": { + "#": "^스치는 죽음 패시브 스킬 1개 추가$" + } + } + }, + "stat_2068574831": { + "id": "local_affliction_notable_brutal_infamy", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Brutal Infamy$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Infâmia Brutal$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Жестокая резня$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Brutal Infamy$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Brutale Niedertracht$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Infâmie brutale$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Infamia brutal$" + }, + "8": { + "#": "^잔인한 악명 패시브 스킬 1개 추가$" + } + } + }, + "stat_2008682345": { + "id": "local_affliction_notable_burden_projection", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Burden Projection$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Projeção de Fardo$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Гнетущий посыл$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Burden Projection$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Macht des Geistes$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Principe d'inertie$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Proyección de carga$" + }, + "8": { + "#": "^괴로운 예감 패시브 스킬 1개 추가$" + } + } + }, + "stat_4199056048": { + "id": "local_affliction_notable_burning_bright", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Burning Bright$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Brilhante$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Яркое зарево$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Burning Bright$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Gleißende Flamme$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Briller de mille feux$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Brillo ardiente$" + }, + "8": { + "#": "^불타는 광채 패시브 스킬 1개 추가$" + } + } + }, + "stat_3359207393": { + "id": "local_affliction_notable_calamitous", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Calamitous$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Calamitoso$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Пагубность$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Calamitous$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Katastrophal$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Calamité vivante$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Calamitoso$" + }, + "8": { + "#": "^환란 패시브 스킬 1개 추가$" + } + } + }, + "stat_3317068522": { + "id": "local_affliction_notable_call_to_the_slaughter", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Call to the Slaughter$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Chamado da Carnificina$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Призыв к бойне$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Call to the Slaughter$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: In die Schlacht$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Appel au massacre$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Llamada a la matanza$" + }, + "8": { + "#": "^살육자 호출 패시브 스킬 1개 추가$" + } + } + }, + "stat_4025536654": { + "id": "local_affliction_notable_capacitor", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Capacitor$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Capacitador$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Накопитель$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Capacitor$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Kondensator$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Condensateur$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Condensador$" + }, + "8": { + "#": "^축전기 패시브 스킬 1개 추가$" + } + } + }, + "stat_456502758": { + "id": "local_affliction_notable_careful_handling", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Careful Handling$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Manipulação Cuidadosa$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Тщательная обработка$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Careful Handling$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Vorsichtige Handhabung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Manipuler avec soin$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Manipulación cuidadosa$" + }, + "8": { + "#": "^세심한 취급 패시브 스킬 1개 추가$" + } + } + }, + "stat_2834490860": { + "id": "local_affliction_notable_chilling_presence", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Chilling Presence$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Presença Resfriante$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Леденящее присутствие$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Chilling Presence$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Kühle Präsenz$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Présence frigorifiante$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Presencia escarchante$" + }, + "8": { + "#": "^차가운 존재 패시브 스킬 1개 추가$" + } + } + }, + "stat_968069586": { + "id": "local_affliction_notable_chip_away", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Chip Away$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Reduzir$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Устранение$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Chip Away$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Tragweite$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Rogner peu à peu$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Descascarar$" + }, + "8": { + "#": "^누그러짐 패시브 스킬 1개 추가$" + } + } + }, + "stat_2129392647": { + "id": "local_affliction_notable_circling_oblivion", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Circling Oblivion$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Círculo do Esquecimento$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Окружающее забвение$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Circling Oblivion$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Kreisende Verwüstung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Oubli qui rôde$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Rondando el olvido$" + }, + "8": { + "#": "^돌고 도는 망각 패시브 스킬 1개 추가$" + } + } + }, + "stat_684087686": { + "id": "local_affliction_notable_clarity_of_purpose", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Clarity of Purpose$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Claridade do Propósito$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Ясность цели$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Clarity of Purpose$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Klare Bestimmung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Clarté du but$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Claridad de propósito$" + }, + "8": { + "#": "^명료한 목적 패시브 스킬 1개 추가$" + } + } + }, + "stat_836566759": { + "id": "local_affliction_notable_cold_blooded_killer", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Cold-Blooded Killer$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Matador Sangue Frio$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Хладнокровный убийца$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Cold-Blooded Killer$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Kaltblütiger Mörder$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Tueur de sang froid$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Asesino de sangre fría$" + }, + "8": { + "#": "^냉혹한 살해자 패시브 스킬 1개 추가$" + } + } + }, + "stat_1274505521": { + "id": "local_affliction_notable_cold_conduction", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Cold Conduction$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Condução Gélida$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Холодная проводимость$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Cold Conduction$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Kälteleiter$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Conduction du froid$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Conducción fría$" + }, + "8": { + "#": "^냉기 전도 패시브 스킬 1개 추가$" + } + } + }, + "stat_744783843": { + "id": "local_affliction_notable_cold_to_the_core", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Cold to the Core$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Completamente Frio$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Мороз до костей$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Cold to the Core$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Herz aus Eis$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Froid comme la pierre$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Frío hasta la médula$" + }, + "8": { + "#": "^파고드는 추위 패시브 스킬 1개 추가$" + } + } + }, + "stat_3122505794": { + "id": "local_affliction_notable_combat_rhythm", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Combat Rhythm$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Rítmo de Combate$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Боевой ритм$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Combat Rhythm$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Kampfrhythmus$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Rythme du combat$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Ritmo de combate$" + }, + "8": { + "#": "^전투 리듬 패시브 스킬 1개 추가$" + } + } + }, + "stat_4018305528": { + "id": "local_affliction_notable_compound_injury", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Compound Injury$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Ferimento Composto$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Сложная травма$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Compound Injury$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Knochenbruch$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Blessure ouverte$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Lesión agravada$" + }, + "8": { + "#": "^복합 부상 패시브 스킬 1개 추가$" + } + } + }, + "stat_3930242735": { + "id": "local_affliction_notable_confident_combatant", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Confident Combatant$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Combatente Confiante$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Уверенный боец$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Confident Combatant$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Selbstbewusster Kämpfer$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Combattant confiant$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Combatiente confiado$" + }, + "8": { + "#": "^대담한 전투원 패시브 스킬 1개 추가$" + } + } + }, + "stat_4105031548": { + "id": "local_affliction_notable_conjured_wall", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Conjured Wall$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Parede Conjurada$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Сотворенная стена$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Conjured Wall$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Unsichtbare Wand$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Mur conjuré$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Muro conjurado$" + }, + "8": { + "#": "^상상의 벽 패시브 스킬 1개 추가$" + } + } + }, + "stat_2083777017": { + "id": "local_affliction_notable_conservation_of_energy", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Conservation of Energy$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Conservação de Energia$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Сохранение энергии$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Conservation of Energy$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Energieerhaltung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Conservation de l'énergie$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Conservación de energía$" + }, + "8": { + "#": "^에너지 보존 패시브 스킬 1개 추가$" + } + } + }, + "stat_2938895712": { + "id": "local_affliction_notable_cooked_alive", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Cooked Alive$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Queimado Vivo$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Приготовленный заживо$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Cooked Alive$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Lebendig gekocht$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Cuit vivant$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Cocinado vivo$" + }, + "8": { + "#": "^기진맥진 패시브 스킬 1개 추가$" + } + } + }, + "stat_1777139212": { + "id": "local_affliction_notable_corrosive_elements", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Corrosive Elements$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Elementos Corrosivos$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Агрессивные стихии$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Corrosive Elements$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Korrosive Elemente$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Éléments corrosifs$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Elementos corrosivos$" + }, + "8": { + "#": "^부식성 원소 패시브 스킬 1개 추가$" + } + } + }, + "stat_1153801980": { + "id": "local_affliction_notable_cremator", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Cremator$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Cremador$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Сжигатель$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Cremator$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Kremator$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Crémateur$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Crematorio$" + }, + "8": { + "#": "^소각로 패시브 스킬 1개 추가$" + } + } + }, + "stat_1821748178": { + "id": "local_affliction_notable_cry_wolf", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Cry Wolf$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Clamor Lupino$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Волчий вой$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Cry Wolf$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Wolfsheulen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Crier au loup$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Dar la alarma$" + }, + "8": { + "#": "^양치기 소년 패시브 스킬 1개 추가$" + } + } + }, + "stat_2026112251": { + "id": "local_affliction_notable_cult_leader", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Cult-Leader$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Líder do Culto$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Лидер культа$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Cult-Leader$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Kultführer$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Gourou$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Líder del culto$" + }, + "8": { + "#": "^교주 패시브 스킬 1개 추가$" + } + } + }, + "stat_2534405517": { + "id": "local_affliction_notable_daring_ideas", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Daring Ideas$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Ideias Desafiadoras$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Смелые идеи$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Daring Ideas$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Gewagte Gedanken$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Idées audacieuses$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Ideas atrevidas$" + }, + "8": { + "#": "^대담한 사고 패시브 스킬 1개 추가$" + } + } + }, + "stat_462115791": { + "id": "local_affliction_notable_dark_discourse", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Dark Discourse$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Discurso Sombrio$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Темный трактат$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Dark Discourse$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Dunkler Diskurs$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Sombre sermon$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Discurso oscuro$" + }, + "8": { + "#": "^어둠의 설교 패시브 스킬 1개 추가$" + } + } + }, + "stat_1603621602": { + "id": "local_affliction_notable_dark_ideation", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Dark Ideation$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Ideação Sombria$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Темное воплощение$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Dark Ideation$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Dunkle Gedanken$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Sombre idéation$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Ideal oscuro$" + }, + "8": { + "#": "^음울한 관념 패시브 스킬 1개 추가$" + } + } + }, + "stat_3784610129": { + "id": "local_affliction_notable_dark_messenger", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Dark Messenger$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Mensageiro Sombrio$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Темный посланник$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Dark Messenger$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Dunkler Bote$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Sombre messager$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Mensajero oscuro$" + }, + "8": { + "#": "^어둠 전달자 패시브 스킬 1개 추가$" + } + } + }, + "stat_846491278": { + "id": "local_affliction_notable_darting_movements", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Darting Movements$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Movimentos de Arremesso$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Резкие движения$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Darting Movements$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Ruckartige Bewegungen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Mouvements brusques$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Movimientos precipitados$" + }, + "8": { + "#": "^쏜살같은 이동 패시브 스킬 1개 추가$" + } + } + }, + "stat_1013470938": { + "id": "local_affliction_notable_deadly_repartee", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Deadly Repartee$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Réplica Mortal$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Смертельная находчивость$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Deadly Repartee$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Tödlicher Schlagabtausch$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Répartie mortelle$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Reparto mortal$" + }, + "8": { + "#": "^신랄한 말재간 패시브 스킬 1개 추가$" + } + } + }, + "stat_1703766309": { + "id": "local_affliction_notable_deep_chill", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Deep Chill$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Calafrio Profundo$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Глубокое охлаждение$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Deep Chill$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Starke Unterkühlung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Frigorification profonde$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Escarcha profunda$" + }, + "8": { + "#": "^짙은 오한 패시브 스킬 1개 추가$" + } + } + }, + "stat_410939404": { + "id": "local_affliction_notable_deep_cuts", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Deep Cuts$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Cortes Profundos$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Глубокие порезы$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Deep Cuts$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Tiefe Schnitte$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Entailles profondes$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Cortes profundos$" + }, + "8": { + "#": "^깊은 상처 패시브 스킬 1개 추가$" + } + } + }, + "stat_3711553948": { + "id": "local_affliction_notable_devastator", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Devastator$" + }, + "2": { + "#": "^1 das Habilidades Passivas adicionadas é Devastador$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Разрушитель$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Devastator$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Verwüster$" + }, + "6": { + "#": "^L'un des Talents passifs mineurs ajoutés est Dévastateur$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Devastador$" + }, + "8": { + "#": "^파괴자 패시브 스킬 1개 추가$" + } + } + }, + "stat_3177526694": { + "id": "local_affliction_notable_disciples", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Disciples$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Discípulos$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Последователи$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Disciples$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Jünger$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Disciples$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Discípulos$" + }, + "8": { + "#": "^신봉자 패시브 스킬 1개 추가$" + } + } + }, + "stat_183591019": { + "id": "local_affliction_notable_disease_vector", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Disease Vector$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Vetor de Doenças$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Переносчик болезни$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Disease Vector$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Verhängnisvolle Krankheit$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Vecteur de maladies$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Vector de enfermedad$" + }, + "8": { + "#": "^질병 매개 패시브 스킬 1개 추가$" + } + } + }, + "stat_3206911230": { + "id": "local_affliction_notable_disorienting_display", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Disorienting Display$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Demonstração Desorientadora$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Отвлекающий маневр$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Disorienting Display$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Verwirrendes Schauspiel$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Démonstration désorientante$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Exhibición desconcertante$" + }, + "8": { + "#": "^혼란스러운 과시 패시브 스킬 1개 추가$" + } + } + }, + "stat_3351136461": { + "id": "local_affliction_notable_disorienting_wounds", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Disorienting Wounds$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Feridas Desorientadoras$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Дизориентирующие раны$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Disorienting Wounds$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Verwirrende Wunden$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Blessures désorientantes$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Heridas desorientadoras$" + }, + "8": { + "#": "^혼란스러운 상처 패시브 스킬 1개 추가$" + } + } + }, + "stat_3652138990": { + "id": "local_affliction_notable_distilled_perfection", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Distilled Perfection$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Perfeição Destilada$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Очищенное совершенство$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Distilled Perfection$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Destillierte Perfektion$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Perfection distillée$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Perfección destilada$" + }, + "8": { + "#": "^응축된 완벽 패시브 스킬 1개 추가$" + } + } + }, + "stat_228455793": { + "id": "local_affliction_notable_doryanis_lesson", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Doryani's Lesson$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Lição de Doryani$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Урок Дориани$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Doryani's Lesson$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Doryanis Lehre$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Leçon de Doryani$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es La lección de Doryani$" + }, + "8": { + "#": "^도리아니의 교훈 패시브 스킬 1개 추가$" + } + } + }, + "stat_1038955006": { + "id": "local_affliction_notable_dragon_hunter", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Dragon Hunter$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Caçador de Dragões$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Охотник на драконов$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Dragon Hunter$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Drachenjäger$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Chasseur de dragons$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Cazador de dragones$" + }, + "8": { + "#": "^용 사냥꾼 패시브 스킬 1개 추가$" + } + } + }, + "stat_3087667389": { + "id": "local_affliction_notable_dread_march", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Dread March$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Marcha Horrenda$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Марш страха$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Dread March$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Marsch des Grauens$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Marche de l'effroi$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Desfile de pavor$" + }, + "8": { + "#": "^공포의 행진 패시브 스킬 1개 추가$" + } + } + }, + "stat_1911162866": { + "id": "local_affliction_notable_drive_the_destruction", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Drive the Destruction$" + }, + "2": { + "#": "^1 das Habilidades Passivas adicionadas é Leve a Destruição$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Управление разрушением$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Drive the Destruction$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Destruktionstrieb$" + }, + "6": { + "#": "^L'un des Talents passifs mineurs ajoutés est Diriger la destruction$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Impulsar la destrucción$" + }, + "8": { + "#": "^파괴의 원동력 패시브 스킬 1개 추가$" + } + } + }, + "stat_3737604164": { + "id": "local_affliction_notable_eldritch_inspiration", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Eldritch Inspiration$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Inspiração Ancestral$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Жуткое вдохновение$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Eldritch Inspiration$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Unheimliche Inspiration$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Inspiration surnaturelle$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Inspiración antigua$" + }, + "8": { + "#": "^섬뜩한 영감 패시브 스킬 1개 추가$" + } + } + }, + "stat_289714529": { + "id": "local_affliction_notable_elegant_form", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Elegant Form$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Forma Elegante$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Элегантная форма$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Elegant Form$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Elegante Form$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Forme élégante$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Forma elegante$" + }, + "8": { + "#": "^고상한 형태 패시브 스킬 1개 추가$" + } + } + }, + "stat_2032453153": { + "id": "local_affliction_notable_empowered_envoy", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Empowered Envoy$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Embaixador Empoderado$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Эмиссар$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Empowered Envoy$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Mächtiger Gesandter$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Envoyé officiel$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Emisario capacitado$" + }, + "8": { + "#": "^전권 대사 패시브 스킬 1개 추가$" + } + } + }, + "stat_2150878631": { + "id": "local_affliction_notable_endbringer", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Endbringer$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Finalizador$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Вестник исхода$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Endbringer$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Todbringer$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Celui qui apporte la fin$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Adalid del fin$" + }, + "8": { + "#": "^종말 인도자 패시브 스킬 1개 추가$" + } + } + }, + "stat_2043284086": { + "id": "local_affliction_notable_enduring_composure", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Enduring Composure$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Composição Duradoura$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Стойкое хладнокровие$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Enduring Composure$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Starke Haltung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Sang-froid inébranlable$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Compostura duradera$" + }, + "8": { + "#": "^지속되는 평정 패시브 스킬 1개 추가$" + } + } + }, + "stat_2522970386": { + "id": "local_affliction_notable_enduring_focus", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Enduring Focus$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Foco Tolerante$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Стойкое средоточие$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Enduring Focus$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Starker Fokus$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Focalisation inébranlable$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Enfoque duradero$" + }, + "8": { + "#": "^지속되는 집중 패시브 스킬 1개 추가$" + } + } + }, + "stat_252724319": { + "id": "local_affliction_notable_enduring_ward", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Enduring Ward$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Proteção Tolerante$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Выносливый хранитель$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Enduring Ward$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Starke Abwehr$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Égide d'endurance$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Protección duradera$" + }, + "8": { + "#": "^지속되는 수호 패시브 스킬 1개 추가$" + } + } + }, + "stat_2195518432": { + "id": "local_affliction_notable_energy_from_naught", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Energy From Naught$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Energia do Nada$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Энергия из ничего$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Energy From Naught$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Energie aus dem Nichts$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Énergie libre$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Energía de la nada$" + }, + "8": { + "#": "^무한 동력 패시브 스킬 1개 추가$" + } + } + }, + "stat_1096136223": { + "id": "local_affliction_notable_essence_rush", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Essence Rush$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Adrenalina da Essência$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Прилив духа$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Essence Rush$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Energierausch$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Poussée d'essence$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Corriente de esencia$" + }, + "8": { + "#": "^정수의 습격 패시브 스킬 1개 추가$" + } + } + }, + "stat_2144634814": { + "id": "local_affliction_notable_eternal_suffering", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Eternal Suffering$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Sofrimento Eterno$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Вечные страдания$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Eternal Suffering$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Ewiges Leid$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Souffrance éternelle$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Sufrimiento eterno$" + }, + "8": { + "#": "^영원한 괴로움 패시브 스킬 1개 추가$" + } + } + }, + "stat_4291066912": { + "id": "local_affliction_notable_evil_eye", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Evil Eye$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Olho Perverso$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Сглаз$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Evil Eye$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Böser Blick$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Mauvais œil$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Mal de ojo$" + }, + "8": { + "#": "^사악한 눈 패시브 스킬 1개 추가$" + } + } + }, + "stat_394918362": { + "id": "local_affliction_notable_expansive_might", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Expansive Might$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Poder Expansivo$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Обширная мощь$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Expansive Might$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Weitreichende Macht$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Puissance en expansion$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Poderío expansivo$" + }, + "8": { + "#": "^팽창하는 힘 패시브 스킬 1개 추가$" + } + } + }, + "stat_2020075345": { + "id": "local_affliction_notable_expendability", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Expendability$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Dispensabilidade$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Одноразовость$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Expendability$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Entbehrlichkeit$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Surplus de mécanismes$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Prescindible$" + }, + "8": { + "#": "^소모성 패시브 스킬 1개 추가$" + } + } + }, + "stat_2084371547": { + "id": "local_affliction_notable_expert_sabotage", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Expert Sabotage$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Sabotagem Perita$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Умелая диверсия$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Expert Sabotage$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Geschickte Sabotage$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Sabotage expert$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Sabotaje experto$" + }, + "8": { + "#": "^본격적인 방해 패시브 스킬 1개 추가$" + } + } + }, + "stat_2017927451": { + "id": "local_affliction_notable_explosive_force", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Explosive Force$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Força Explosiva$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Взрывная сила$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Explosive Force$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Explosive Kraft$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Force explosive$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Fuerza explosiva$" + }, + "8": { + "#": "^폭발력 패시브 스킬 1개 추가$" + } + } + }, + "stat_131358113": { + "id": "local_affliction_notable_exposure_therapy", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Exposure Therapy$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Terapia de Exposição$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Длительная терапия$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Exposure Therapy$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Konfrontationstherapie$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Thérapie d'exposition$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Terapia de exposición$" + }, + "8": { + "#": "^노출 치료 패시브 스킬 1개 추가$" + } + } + }, + "stat_3818661553": { + "id": "local_affliction_notable_eye_of_the_storm", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Eye of the Storm$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Olho da Tormenta$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Око бури$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Eye of the Storm$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Auge des Sturms$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Œil du cyclone$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Ojo de la tormenta$" + }, + "8": { + "#": "^태풍의 눈 패시브 스킬 1개 추가$" + } + } + }, + "stat_392942015": { + "id": "local_affliction_notable_eye_to_eye", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Eye to Eye$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Olho por Olho$" + }, + "3": { + "#": "^1 добавленное пассивное умение - С глазу на глаз$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Eye to Eye$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Auge in Auge$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Dans le blanc des yeux$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Ojo a ojo$" + }, + "8": { + "#": "^눈에는 눈 패시브 스킬 1개 추가$" + } + } + }, + "stat_2484082827": { + "id": "local_affliction_notable_fan_of_blades", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Fan of Blades$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Leque de Lâminas$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Веер клинков$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Fan of Blades$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Klingenfächer$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Éventail de lames$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Abanico de filos$" + }, + "8": { + "#": "^칼날 부채 패시브 스킬 1개 추가$" + } + } + }, + "stat_2918755450": { + "id": "local_affliction_notable_fan_the_flames", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Fan the Flames$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Lenha na Fogueira$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Раздувшееся пламя$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Fan the Flames$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Funkenflug$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Attiser les flammes$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Avivar las llamas$" + }, + "8": { + "#": "^불난 집 부채질 패시브 스킬 1개 추가$" + } + } + }, + "stat_37078857": { + "id": "local_affliction_notable_fasting", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Fasting$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Abstinência$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Голодание$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Fasting$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Fasten$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Jeûne$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Ayuno$" + }, + "8": { + "#": "^금식 패시브 스킬 1개 추가$" + } + } + }, + "stat_3134222965": { + "id": "local_affliction_notable_fearsome_warrior", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Fearsome Warrior$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Guerreiro Destemido$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Грозный воин$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Fearsome Warrior$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Furchterregender Krieger$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Guerrier intimidant$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Guerrero temible$" + }, + "8": { + "#": "^무시무시한 전사 패시브 스킬 1개 추가$" + } + } + }, + "stat_2396755365": { + "id": "local_affliction_notable_feast_of_flesh", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Feast of Flesh$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Banquete de Carne$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Пир плоти$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Feast of Flesh$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Fleisch-Völlerei$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Festin de chair$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Festín de carne$" + }, + "8": { + "#": "^육체의 연회 패시브 스킬 1개 추가$" + } + } + }, + "stat_383245807": { + "id": "local_affliction_notable_feasting_fiends", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Feasting Fiends$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Demônios Famintos$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Пирующая нечисть$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Feasting Fiends$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Hungrige Geschöpfe$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Festin des monstres$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Demonios devoradores$" + }, + "8": { + "#": "^연회의 마귀 패시브 스킬 1개 추가$" + } + } + }, + "stat_3944525413": { + "id": "local_affliction_notable_feed_the_fury", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Feed the Fury$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Alimente a Fúria$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Накорми ярость$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Feed the Fury$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Die Wut befeuern$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Aviver la violence$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Alimentar la furia$" + }, + "8": { + "#": "^광분 조장 패시브 스킬 1개 추가$" + } + } + }, + "stat_1353571444": { + "id": "local_affliction_notable_fettle", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Fettle$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Feto$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Хорошая форма$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Fettle$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Gute Verfassung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Santé$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Estado de salud$" + }, + "8": { + "#": "^원기 패시브 스킬 1개 추가$" + } + } + }, + "stat_3188756614": { + "id": "local_affliction_notable_fire_attunement", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Fire Attunement$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Sintonia do Fogo$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Внимание к огню$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Fire Attunement$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Feuerfest$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Harmonie avec le feu$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Afinidad por el fuego$" + }, + "8": { + "#": "^불의 조율 패시브 스킬 1개 추가$" + } + } + }, + "stat_1134501245": { + "id": "local_affliction_notable_first_among_equals", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is First Among Equals$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Primeiro Entre os Iguais$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Первый среди равных$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ First Among Equals$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Erster unter Gleichen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Premier parmi les pairs$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Primero entre sus iguales$" + }, + "8": { + "#": "^평등한 지도자 패시브 스킬 1개 추가$" + } + } + }, + "stat_982290947": { + "id": "local_affliction_notable_flexible_sentry", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Flexible Sentry$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Sentinela Flexível$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Гибкий страж$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Flexible Sentry$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Anpassungsfähigkeit$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Sentinelle polyvalente$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Centinela flexible$" + }, + "8": { + "#": "^유순한 보초 패시브 스킬 1개 추가$" + } + } + }, + "stat_2350430215": { + "id": "local_affliction_notable_flow_of_life", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Flow of Life$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Fluxo da Vida$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Течение жизни$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Flow of Life$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Lebensfluss$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Épanchement de vie$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Flujo de la vida$" + }, + "8": { + "#": "^생의 흐름 패시브 스킬 1개 추가$" + } + } + }, + "stat_3984980429": { + "id": "local_affliction_notable_follow_through", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Follow-Through$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Acompanhamento$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Последствия$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Follow-Through$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Ende mit Schrecken$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Répercussion$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Seguimiento$" + }, + "8": { + "#": "^마무리 작업 패시브 스킬 1개 추가$" + } + } + }, + "stat_1904581068": { + "id": "local_affliction_notable_force_multiplier", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Force Multiplier$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Multiplicador de Força$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Множитель силы$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Force Multiplier$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Kraft-Multiplikator$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Multiplication de force$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Multiplicador de fuerza$" + }, + "8": { + "#": "^전력 배가 패시브 스킬 1개 추가$" + } + } + }, + "stat_3599340381": { + "id": "local_affliction_notable_fuel_the_fight", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Fuel the Fight$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Abastecer a Luta$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Топливо для битвы$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Fuel the Fight$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Kampfansage$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Alimenter la lutte$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Avivar la pelea$" + }, + "8": { + "#": "^전투 장려 패시브 스킬 1개 추가$" + } + } + }, + "stat_3415827027": { + "id": "local_affliction_notable_furious_assault", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Furious Assault$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Assalto Furioso$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Неистовой наступление$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Furious Assault$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Wütender Angriff$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Offensive furieuse$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Asalto furioso$" + }, + "8": { + "#": "^분개한 공격 패시브 스킬 1개 추가$" + } + } + }, + "stat_2763732093": { + "id": "local_affliction_notable_genius", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Genius$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Gênio$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Гений$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Genius$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Genie$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Génie$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Genio$" + }, + "8": { + "#": "^천재 패시브 스킬 1개 추가$" + } + } + }, + "stat_1543731719": { + "id": "local_affliction_notable_gladiatorial_combat", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Gladiatorial Combat$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Combate Gladiatório$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Гладиаторский бой$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Gladiatorial Combat$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Kampf der Gladiatoren$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Combat de Gladiateurs$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Combate de gladiadores$" + }, + "8": { + "#": "^검투사의 전투 패시브 스킬 1개 추가$" + } + } + }, + "stat_1591995797": { + "id": "local_affliction_notable_gladiators_fortitude", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Gladiator's Fortitude$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Fortitude do Gladiador$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Стойкость гладиатора$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Gladiator's Fortitude$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Tapferkeit eines Gladiators$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Fortitude du Gladiateur$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Fortaleza del gladiador$" + }, + "8": { + "#": "^검투사의 기백 패시브 스킬 1개 추가$" + } + } + }, + "stat_1903496649": { + "id": "local_affliction_notable_graceful_execution", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Graceful Execution$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Execução Graciosa$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Изящное исполнение$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Graceful Execution$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Gekonnte Ausführung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Exécution gracieuse$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Ejecución elegante$" + }, + "8": { + "#": "^품위 있는 처형 패시브 스킬 1개 추가$" + } + } + }, + "stat_2350900742": { + "id": "local_affliction_notable_grand_design", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Grand Design$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Grande Plano$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Великолепный план$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Grand Design$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Zeit der Zeichen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Nobles desseins$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Gran diseño$" + }, + "8": { + "#": "^위대한 설계 패시브 스킬 1개 추가$" + } + } + }, + "stat_2194205899": { + "id": "local_affliction_notable_grim_oath", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Grim Oath$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Juramento Sombrio$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Мрачная клятва$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Grim Oath$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Finsterer Schwur$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Sinistre serment$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Juramento sombrío$" + }, + "8": { + "#": "^엄숙한 서약 패시브 스킬 1개 추가$" + } + } + }, + "stat_1882129725": { + "id": "local_affliction_notable_guerilla_tactics", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Guerilla Tactics$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Tática de Guerrilha$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Партизанская тактика$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Guerilla Tactics$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Guerilla-Taktik$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Tactiques de guérilla$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Tácticas de guerrilla$" + }, + "8": { + "#": "^유격 전술 패시브 스킬 1개 추가$" + } + } + }, + "stat_72129119": { + "id": "local_affliction_notable_haemorrhage", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Haemorrhage$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Hemorragia$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Кровоизлияние$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Haemorrhage$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Ausbluten$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Hémorragie$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Hemorragia$" + }, + "8": { + "#": "^실혈 패시브 스킬 1개 추가$" + } + } + }, + "stat_1080363357": { + "id": "local_affliction_notable_haunting_shout", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Haunting Shout$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Grito Assustador$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Устрашающий крик$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Haunting Shout$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Eindringlicher Schrei$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Hurlement terrifiant$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Grito inquietante$" + }, + "8": { + "#": "^소름 돋는 비명 패시브 스킬 1개 추가$" + } + } + }, + "stat_1483358825": { + "id": "local_affliction_notable_heart_of_iron", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Heart of Iron$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Coração de Ferro$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Железное сердце$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Heart of Iron$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Herz aus Eisen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Cœur de fer$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Corazón de hierro$" + }, + "8": { + "#": "^무쇠 심장 패시브 스킬 1개 추가$" + } + } + }, + "stat_3640252904": { + "id": "local_affliction_notable_heavy_hitter", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Heavy Hitter$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Golpeador Pesado$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Тяжелые удары$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Heavy Hitter$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Schläger$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Cogneur$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Peso pesado$" + }, + "8": { + "#": "^묵직한 타격가 패시브 스킬 1개 추가$" + } + } + }, + "stat_3274270612": { + "id": "local_affliction_notable_heraldry", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Heraldry$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Heráldica$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Геральдика$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Heraldry$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Heraldik$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Héraldique$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Heráldica$" + }, + "8": { + "#": "^문장학 패시브 스킬 1개 추가$" + } + } + }, + "stat_2341828832": { + "id": "local_affliction_notable_hex_breaker", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Hex Breaker$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Quebra-Maldições$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Чаролом$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Hex Breaker$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Fluchbrecher$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Brise-maléfices$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Rompe-maleficios$" + }, + "8": { + "#": "^사술 파괴자 패시브 스킬 1개 추가$" + } + } + }, + "stat_2294919888": { + "id": "local_affliction_notable_hibernator", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Hibernator$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Hibernador$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Морозостойкий$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Hibernator$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Winterschläfer$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Hibernation$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Hibernador$" + }, + "8": { + "#": "^동면 패시브 스킬 1개 추가$" + } + } + }, + "stat_2665170385": { + "id": "local_affliction_notable_hit_and_run", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Hit and Run$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Bater e Correr$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Бей и беги$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Hit and Run$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Überfall$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Jeu de jambes$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Golpea y corre$" + }, + "8": { + "#": "^치고 빠지기 패시브 스킬 1개 추가$" + } + } + }, + "stat_3667965781": { + "id": "local_affliction_notable_holistic_health", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Holistic Health$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Saúde Holística$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Целостность$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Holistic Health$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Ganzheitliche Gesundheit$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Bien-être holistique$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Salud holística$" + }, + "8": { + "#": "^총체적 건강 패시브 스킬 1개 추가$" + } + } + }, + "stat_3898572660": { + "id": "local_affliction_notable_holy_conquest", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Holy Conquest$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Conquista Sagrada$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Святое завоевание$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Holy Conquest$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Heilige Eroberung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Conquête sacrée$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Conquista sagrada$" + }, + "8": { + "#": "^신성한 점령 패시브 스킬 1개 추가$" + } + } + }, + "stat_3467711950": { + "id": "local_affliction_notable_hulking_corpses", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Hulking Corpses$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Cadáveres Monstruosos$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Неуклюжие мертвецы$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Hulking Corpses$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Schwerfällige Leichen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Cadavres imposants$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Cadáveres corpulentos$" + }, + "8": { + "#": "^육중한 시신 패시브 스킬 1개 추가$" + } + } + }, + "stat_810219447": { + "id": "local_affliction_notable_improvisor", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Improvisor$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Improvisador$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Импровизатор$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Improvisor$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Improvisator$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Improvisateur$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Improvisador$" + }, + "8": { + "#": "^임시변통 패시브 스킬 1개 추가$" + } + } + }, + "stat_3904970959": { + "id": "local_affliction_notable_insatiable_killer", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Insatiable Killer$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Matador Insaciável$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Ненасытный убийца$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Insatiable Killer$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Unersättlicher Mörder$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Tueur insatiable$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Asesino insaciable$" + }, + "8": { + "#": "^만족을 모르는 살인자 패시브 스킬 1개 추가$" + } + } + }, + "stat_3872380586": { + "id": "local_affliction_notable_inspired_oppression", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Inspired Oppression$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Opressão Inspirada$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Вдохновленное угнетение$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Inspired Oppression$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Beflügelte Unterdrückung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Oppression inspirée$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Opresión inspirada$" + }, + "8": { + "#": "^탁월한 억압 패시브 스킬 1개 추가$" + } + } + }, + "stat_212648555": { + "id": "local_affliction_notable_insulated", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Insulated$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Insulado$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Изолированный$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Insulated$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Isoliert$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Isolation$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Aislado$" + }, + "8": { + "#": "^격리 상태 패시브 스킬 1개 추가$" + } + } + }, + "stat_2785835061": { + "id": "local_affliction_notable_intensity", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Intensity$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Intensidade$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Напряженность$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Intensity$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Intensität$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Intensité$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Intensidad$" + }, + "8": { + "#": "^격렬함 패시브 스킬 1개 추가$" + } + } + }, + "stat_2262034536": { + "id": "local_affliction_notable_invigorating_portents", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Invigorating Portents$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Presságios Revigorantes$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Бодрящие знамения$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Invigorating Portents$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Belebende Vorboten$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Présages tonifiants$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Presagios estimulantes$" + }, + "8": { + "#": "^상쾌한 조짐 패시브 스킬 1개 추가$" + } + } + }, + "stat_3258653591": { + "id": "local_affliction_notable_iron_breaker", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Iron Breaker$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Quebra-Ferro$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Железный сокрушитель$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Iron Breaker$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Eisenbrecher$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Brise-fer$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Rompe-acero$" + }, + "8": { + "#": "^무쇠 분쇄기 패시브 스킬 1개 추가$" + } + } + }, + "stat_426715778": { + "id": "local_affliction_notable_lasting_impression", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Lasting Impression$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Impressões Duradouras$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Неизгладимое впечатление$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Lasting Impression$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Bleibender Eindruck$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Impression durable$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Impresión duradera$" + }, + "8": { + "#": "^불변하는 인상 패시브 스킬 1개 추가$" + } + } + }, + "stat_2195406641": { + "id": "local_affliction_notable_lead_by_example", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Lead By Example$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Liderar Pelo Exemplo$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Подающий пример$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Lead By Example$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Vorbild$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Mener par l'exemple$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Predicar con el ejemplo$" + }, + "8": { + "#": "^솔선수범 패시브 스킬 1개 추가$" + } + } + }, + "stat_2337273077": { + "id": "local_affliction_notable_life_from_death", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Life from Death$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Vida da Morte$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Жизнь из смерти$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Life from Death$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Leben aus dem Tod$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est De la mort jaillit la vie$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Vida desde la muerte$" + }, + "8": { + "#": "^죽음에서 피어난 삶 패시브 스킬 1개 추가$" + } + } + }, + "stat_1094635162": { + "id": "local_affliction_notable_liquid_inspiration", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Liquid Inspiration$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Inspiração Líquida$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Жидкое вдохновение$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Liquid Inspiration$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Flüssige Inspiration$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Inspiration en bouteille$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Inspiración líquida$" + }, + "8": { + "#": "^흐르는 영감 패시브 스킬 1개 추가$" + } + } + }, + "stat_3989400244": { + "id": "local_affliction_notable_low_tolerance", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Low Tolerance$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Baixa Tolerância$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Слабый иммунитет$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Low Tolerance$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Niedrige Toleranz$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Faible tolérance$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Baja tolerancia$" + }, + "8": { + "#": "^낮은 역치 패시브 스킬 1개 추가$" + } + } + }, + "stat_684155617": { + "id": "local_affliction_notable_mage_bane", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Mage Bane$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Destruidor de Magos$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Погибель магов$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Mage Bane$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Magierfluch$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Fléau des Mages$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Calvario del mago$" + }, + "8": { + "#": "^마법사의 파멸 패시브 스킬 1개 추가$" + } + } + }, + "stat_2118664144": { + "id": "local_affliction_notable_mage_hunter", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Mage Hunter$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Caçador de Magos$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Охотник на магов$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Mage Hunter$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Magierjäger$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Chasseur de Mages$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Cazador de magos$" + }, + "8": { + "#": "^마법사 사냥꾼 패시브 스킬 1개 추가$" + } + } + }, + "stat_2886441936": { + "id": "local_affliction_notable_magnifier", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Magnifier$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Lupa$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Увеличитель$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Magnifier$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Vergrößerer$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Amplificateur$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Magnificador$" + }, + "8": { + "#": "^확대경 패시브 스킬 1개 추가$" + } + } + }, + "stat_1015189426": { + "id": "local_affliction_notable_martial_mastery", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Martial Mastery$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Maestria Marcial$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Боевое Мастерство$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Martial Mastery$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Kriegerische Überlegenheit$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Maîtrise martiale$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Maestría marcial$" + }, + "8": { + "#": "^무예 통달 패시브 스킬 1개 추가$" + } + } + }, + "stat_2978494217": { + "id": "local_affliction_notable_martial_momentum", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Martial Momentum$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Movimentação Marcial$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Боевой импульс$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Martial Momentum$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Kriegerische Dynamik$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Élan martial$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Impulso marcial$" + }, + "8": { + "#": "^전투 기세 패시브 스킬 1개 추가$" + } + } + }, + "stat_1152182658": { + "id": "local_affliction_notable_martial_prowess", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Martial Prowess$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Perícia Marcial$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Боевая доблесть$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Martial Prowess$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Kriegerisches Talent$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Martial Prowess$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Proezas marciales$" + }, + "8": { + "#": "^무예 기량 패시브 스킬 1개 추가$" + } + } + }, + "stat_3257074218": { + "id": "local_affliction_notable_master_of_command", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Master of Command$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Mestre do Comando$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Прирожденный командир$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Master of Command$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Kommandant$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Maître du commandement$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Maestro al mando$" + }, + "8": { + "#": "^지휘의 달인 패시브 스킬 1개 추가$" + } + } + }, + "stat_2771217016": { + "id": "local_affliction_notable_master_of_fear", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Master of Fear$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Mestre do Medo$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Мастер страха$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Master of Fear$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Meister der Angst$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Maître de la peur$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Maestro del miedo$" + }, + "8": { + "#": "^두려움의 주인 패시브 스킬 1개 추가$" + } + } + }, + "stat_1462135249": { + "id": "local_affliction_notable_master_of_fire", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Master of Fire$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Mestre do Fogo$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Мастер огня$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Master of Fire$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Meister des Feuers$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Maître du feu$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Maestro del fuego$" + }, + "8": { + "#": "^불의 주인 패시브 스킬 1개 추가$" + } + } + }, + "stat_3585232432": { + "id": "local_affliction_notable_master_the_fundamentals", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Master the Fundamentals$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Mestre dos Fundamentos$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Мастер основ$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Master the Fundamentals$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Grundlagenbeherrschung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Maîtrise des fondamentaux$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Dominar lo básico$" + }, + "8": { + "#": "^기본기의 달인 패시브 스킬 1개 추가$" + } + } + }, + "stat_4291434923": { + "id": "local_affliction_notable_menders_wellspring", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Mender's Wellspring$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Fonte do Reparador$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Восстанавливающий источник$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Mender's Wellspring$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Quell des Heilers$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Source du guérisseur$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Manantial del reparador$" + }, + "8": { + "#": "^땜장이의 원천 패시브 스킬 1개 추가$" + } + } + }, + "stat_4154709486": { + "id": "local_affliction_notable_militarism", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Militarism$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Militarismo$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Милитаризм$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Militarism$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Militarismus$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Militarisme$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Militarismo$" + }, + "8": { + "#": "^상무 정신 패시브 스킬 1개 추가$" + } + } + }, + "stat_2595115995": { + "id": "local_affliction_notable_mindfulness", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Mindfulness$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Atenção$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Осознанность$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Mindfulness$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Achtsamkeit$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Pleine conscience$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Conciencia$" + }, + "8": { + "#": "^열린 사고 패시브 스킬 1개 추가$" + } + } + }, + "stat_1048879642": { + "id": "local_affliction_notable_mob_mentality", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Mob Mentality$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Mentalidade da Multidão$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Стадное чувство$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Mob Mentality$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Bandenmentalität$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Instinct grégaire$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Mentalidad de rebaño$" + }, + "8": { + "#": "^집단 사고 패시브 스킬 1개 추가$" + } + } + }, + "stat_3875792669": { + "id": "local_affliction_notable_molten_ones_mark", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Molten One's Mark$" + }, + "2": { + "#": "^1 das Habilidades Passivas adicionadas é Marca do Derretido$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Метка Расплавленного$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Molten One's Mark$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Mal des Geschmolzenen$" + }, + "6": { + "#": "^L'un des Talents passifs mineurs ajoutés est Marque du Magmatique$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Marca del fundido$" + }, + "8": { + "#": "^녹아내린 신의 징표 패시브 스킬 1개 추가$" + } + } + }, + "stat_2314111938": { + "id": "local_affliction_notable_mystical_ward", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Mystical Ward$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Proteção Mística$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Мистическая защита$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Mystical Ward$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Mystische Abwehr$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Égide mystique$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Protección mística$" + }, + "8": { + "#": "^신비한 수호 패시브 스킬 1개 추가$" + } + } + }, + "stat_510654792": { + "id": "local_affliction_notable_natural_vigour", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Natural Vigour$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Vigor Natural$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Природная энергия$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Natural Vigour$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Natürliche Vitalität$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Vigueur naturelle$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Vigor natural$" + }, + "8": { + "#": "^자연의 활력 패시브 스킬 1개 추가$" + } + } + }, + "stat_1722480396": { + "id": "local_affliction_notable_no_witnesses", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is No Witnesses$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Sem Testemunhas$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Без свидетелей$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ No Witnesses$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Keine Zeugen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Aucun témoin$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Sin testigos$" + }, + "8": { + "#": "^목격자 없음 패시브 스킬 1개 추가$" + } + } + }, + "stat_731840035": { + "id": "local_affliction_notable_non_flammable", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Non-Flammable$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Não-Inflamável$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Невоспламеняющийся$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Non-Flammable$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Schwer entflammbar$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Ignifugé$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es No inflamable$" + }, + "8": { + "#": "^내화성 패시브 스킬 1개 추가$" + } + } + }, + "stat_1028754276": { + "id": "local_affliction_notable_numbing_elixir", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Numbing Elixir$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Elixir Anestésico$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Притупляющий эликсир$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Numbing Elixir$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Betäubendes Elixier$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Élixir anesthésiant$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Elixir adormecedor$" + }, + "8": { + "#": "^마비의 묘약 패시브 스킬 1개 추가$" + } + } + }, + "stat_1976069869": { + "id": "local_affliction_notable_one_with_the_shield", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is One with the Shield$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Um com o Escudo$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Щитоносец$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ One with the Shield$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Eins mit dem Schild$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Union avec le bouclier$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Uno con el escudo$" + }, + "8": { + "#": "^방패 소지 패시브 스킬 1개 추가$" + } + } + }, + "stat_633943719": { + "id": "local_affliction_notable_openness", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Openness$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Abertura$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Открытость$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Openness$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Freimut$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Ouverture d'esprit$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Apertura$" + }, + "8": { + "#": "^진솔함 패시브 스킬 1개 추가$" + } + } + }, + "stat_4281625943": { + "id": "local_affliction_notable_opportunistic_fusilade", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Opportunistic Fusilade$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Fusilada Oportunista$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Пальба наудачу$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Opportunistic Fusilade$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Anpassungsfähige Salve$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Rafales opportunistes$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Raudal oportunista$" + }, + "8": { + "#": "^우발적 연속 공격 패시브 스킬 1개 추가$" + } + } + }, + "stat_2250169390": { + "id": "local_affliction_notable_overlord", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Overlord$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Suserano$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Повелитель$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Overlord$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Tyrann$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Chef de guerre$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Jefe supremo$" + }, + "8": { + "#": "^대군주 패시브 스킬 1개 추가$" + } + } + }, + "stat_3777170562": { + "id": "local_affliction_notable_overshock", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Overshock$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Super Eletrização$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Избыточный шок$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Overshock$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Überschock$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Électrocution fatale$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Electrocucción total$" + }, + "8": { + "#": "^과충격 패시브 스킬 1개 추가$" + } + } + }, + "stat_770408103": { + "id": "local_affliction_notable_overwhelming_malice", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Overwhelming Malice$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Malícia Esmagadora$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Подавляющая злоба$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Overwhelming Malice$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Überwältigende Bosheit$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Malveillance accablante$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Malicia abrumadora$" + }, + "8": { + "#": "^압도적인 악의 패시브 스킬 1개 추가$" + } + } + }, + "stat_4272503233": { + "id": "local_affliction_notable_paralysis", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Paralysis$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Paralisia$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Паралич$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Paralysis$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Paralyse$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Paralysie$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Parálisis$" + }, + "8": { + "#": "^마비 패시브 스킬 1개 추가$" + } + } + }, + "stat_1734275536": { + "id": "local_affliction_notable_peace_amidst_chaos", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Peace Amidst Chaos$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Paz Entre o Caos$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Мир среди хаоса$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Peace Amidst Chaos$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Ruhe inmitten des Chaos$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Quiétude au sein du chaos$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Paz entre el caos$" + }, + "8": { + "#": "^망중한 패시브 스킬 1개 추가$" + } + } + }, + "stat_1722821275": { + "id": "local_affliction_notable_peak_vigour", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Peak Vigour$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Pico de Vigor$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Пик силы$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Peak Vigour$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Bestform$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Vigueur optimale$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Pico de vigor$" + }, + "8": { + "#": "^절정의 활기 패시브 스킬 1개 추가$" + } + } + }, + "stat_1005475168": { + "id": "local_affliction_notable_powerful_assault", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Powerful Assault$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Assalto Poderoso$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Мощное наступление$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Powerful Assault$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Schwerer Überfall$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Assaut percutant$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Asalto poderoso$" + }, + "8": { + "#": "^강력한 공격 패시브 스킬 1개 추가$" + } + } + }, + "stat_164032122": { + "id": "local_affliction_notable_powerful_ward", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Powerful Ward$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Proteção Poderosa$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Могучий хранитель$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Powerful Ward$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Mächtiger Schutz$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Égide de pouvoir$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Protección poderosa$" + }, + "8": { + "#": "^강력한 수호 패시브 스킬 1개 추가$" + } + } + }, + "stat_3435403756": { + "id": "local_affliction_notable_practiced_caster", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Practiced Caster$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Conjurador Praticante$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Умелый чародей$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Practiced Caster$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Erfahrener Zauberer$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Incantateur exercé$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Hechicero experimentado$" + }, + "8": { + "#": "^숙련된 시전자 패시브 스킬 1개 추가$" + } + } + }, + "stat_3860179422": { + "id": "local_affliction_notable_precise_commander", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Precise Commander$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Comandante Preciso$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Точный командир$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Precise Commander$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Präziser Kommandant$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Commandant méticuleux$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Comandante preciso$" + }, + "8": { + "#": "^세심한 지휘관 패시브 스킬 1개 추가$" + } + } + }, + "stat_2913581789": { + "id": "local_affliction_notable_precise_focus", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Precise Focus$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Foco Preciso$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Точное средоточие$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Precise Focus$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Präziser Fokus$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Focalisation méticuleuse$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Enfoque preciso$" + }, + "8": { + "#": "^틀림없는 집중 패시브 스킬 1개 추가$" + } + } + }, + "stat_2335364359": { + "id": "local_affliction_notable_precise_retaliation", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Precise Retaliation$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Retaliação Precisa$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Точное возмездие$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Precise Retaliation$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Präziser Gegenschlag$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Représailles habiles$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Represalia precisa$" + }, + "8": { + "#": "^정확한 보복 패시브 스킬 1개 추가$" + } + } + }, + "stat_3391925584": { + "id": "local_affliction_notable_pressure_points", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Pressure Points$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Pontos de Pressão$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Болевые точки$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Pressure Points$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Druckpunkte$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Points vitaux$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Puntos de presión$" + }, + "8": { + "#": "^급소 패시브 스킬 1개 추가$" + } + } + }, + "stat_622362787": { + "id": "local_affliction_notable_primordial_bond", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Primordial Bond$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Vínculo Primordial$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Первобытная связь$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Primordial Bond$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Urzeitliches Band$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Lien primordial$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Vínculo primordial$" + }, + "8": { + "#": "^태고의 유대 패시브 스킬 1개 추가$" + } + } + }, + "stat_3492924480": { + "id": "local_affliction_notable_prismatic_carapace", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Prismatic Carapace$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Carapaça Prismática$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Радужный панцирь$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Prismatic Carapace$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Spektraler Panzer$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Carapace prismatique$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Caparazón prismático$" + }, + "8": { + "#": "^분광 등딱지 패시브 스킬 1개 추가$" + } + } + }, + "stat_1149662934": { + "id": "local_affliction_notable_prismatic_dance", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Prismatic Dance$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Dança Prismática$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Радужный танец$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Prismatic Dance$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Spektraler Tanz$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Danse prismatique$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Baile prismático$" + }, + "8": { + "#": "^분광의 춤 패시브 스킬 1개 추가$" + } + } + }, + "stat_2342448236": { + "id": "local_affliction_notable_prismatic_heart", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Prismatic Heart$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Coração Prismático$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Радужное сердце$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Prismatic Heart$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Spektrales Herz$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Cœur prismatique$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Corazón prismático$" + }, + "8": { + "#": "^분광 심장 패시브 스킬 1개 추가$" + } + } + }, + "stat_1705633890": { + "id": "local_affliction_notable_prodigious_defense", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Prodigious Defence$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Defesa Prodigiosa$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Потрясающая защита$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Prodigious Defence$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Effektive Abwehr$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Défense prodigieuse$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Defensa prodigiosa$" + }, + "8": { + "#": "^비범한 방어 패시브 스킬 1개 추가$" + } + } + }, + "stat_814369372": { + "id": "local_affliction_notable_provocateur", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Provocateur$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Provocador$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Провокатор$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Provocateur$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Provokateur$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Provocateur$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Provocador$" + }, + "8": { + "#": "^선동가 패시브 스킬 1개 추가$" + } + } + }, + "stat_1507409483": { + "id": "local_affliction_notable_pure_agony", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Pure Agony$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Agonia Pura$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Чистая агония$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Pure Agony$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Reine Agonie$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Agonie à l'état pur$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Agonía pura$" + }, + "8": { + "#": "^순수한 고통 패시브 스킬 1개 추가$" + } + } + }, + "stat_3509724289": { + "id": "local_affliction_notable_pure_aptitude", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Pure Aptitude$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Aptidão Pura$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Чистые наклонности$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Pure Aptitude$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Naturtalent$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Intellect à l'état pur$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Aptitud pura$" + }, + "8": { + "#": "^타고난 재능 패시브 스킬 1개 추가$" + } + } + }, + "stat_3950683692": { + "id": "local_affliction_notable_pure_commander", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Pure Commander$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Comandante Puro$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Чистый командир$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Pure Commander$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Reiner Kommandant$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Commandant pur$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Comandante puro$" + }, + "8": { + "#": "^타고난 지휘관 패시브 스킬 1개 추가$" + } + } + }, + "stat_1621496909": { + "id": "local_affliction_notable_pure_guile", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Pure Guile$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Astúcia Pura$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Чистое коварство$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Pure Guile$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Reine List$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Ruse à l'état pur$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Astucia pura$" + }, + "8": { + "#": "^타고난 교활함 패시브 스킬 1개 추가$" + } + } + }, + "stat_2372915005": { + "id": "local_affliction_notable_pure_might", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Pure Might$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Puro Poder$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Чистая мощь$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Pure Might$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Reine Macht$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Puissance à l'état pur$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Poderío puro$" + }, + "8": { + "#": "^타고난 힘 패시브 스킬 1개 추가$" + } + } + }, + "stat_507505131": { + "id": "local_affliction_notable_purposeful_harbinger", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Purposeful Harbinger$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Emissário do Propósito$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Целеустремленный предвестник$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Purposeful Harbinger$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Entschlossener Vorbote$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Héraut résolu$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Heraldo decidido$" + }, + "8": { + "#": "^단호한 선구자 패시브 스킬 1개 추가$" + } + } + }, + "stat_2169345147": { + "id": "local_affliction_notable_quick_and_deadly", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Quick and Deadly$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Rápido e Mortal$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Убийственно быстрый$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Quick and Deadly$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Schnell und tödlich$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Rapide et mortel$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Rápido y mortal$" + }, + "8": { + "#": "^빠르고 치명적 패시브 스킬 1개 추가$" + } + } + }, + "stat_1626818279": { + "id": "local_affliction_notable_quick_getaway", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Quick Getaway$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Portal Rápido$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Быстрое бегство$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Quick Getaway$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Schnelle Flucht$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Fuite rapide$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Escapada rápida$" + }, + "8": { + "#": "^신속한 도주 패시브 스킬 1개 추가$" + } + } + }, + "stat_1570474940": { + "id": "local_affliction_notable_rapid_infusion", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Rapid Infusion$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Infusão Rápida$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Быстрое вливание$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Rapid Infusion$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Schnelle Konzentration$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Infusion de rapidité$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Infusión rápida$" + }, + "8": { + "#": "^신속한 주입 패시브 스킬 1개 추가$" + } + } + }, + "stat_4288473380": { + "id": "local_affliction_notable_rattling_bellow", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Rattling Bellow$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Rugido Barulhento$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Грохочущий рев$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Rattling Bellow$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Ohrenbetäubendes Gebrüll$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Hurlement guttural$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Rugido agitador$" + }, + "8": { + "#": "^기운찬 고함 패시브 스킬 1개 추가$" + } + } + }, + "stat_1038897629": { + "id": "local_affliction_notable_raze_and_pillage", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Raze and Pillage$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Demolir e Pilhar$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Грабь и разоряй$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Raze and Pillage$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Zerstören und plündern$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Incendier et piller$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Saqueo y pillaje$" + }, + "8": { + "#": "^파괴와 약탈 패시브 스킬 1개 추가$" + } + } + }, + "stat_845306697": { + "id": "local_affliction_notable_readiness", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Readiness$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Preparação$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Готовность$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Readiness$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Bereitschaft$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Paré à toute éventualité$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Viveza$" + }, + "8": { + "#": "^준비 태세 패시브 스킬 1개 추가$" + } + } + }, + "stat_691431951": { + "id": "local_affliction_notable_remarkable", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Remarkable$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Notável$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Впечатляющий$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Remarkable$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Ausgezeichnet$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Remarquable$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Destacado$" + }, + "8": { + "#": "^비범함 패시브 스킬 1개 추가$" + } + } + }, + "stat_4263287206": { + "id": "local_affliction_notable_rend", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Rend$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Fender$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Рваная рана$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Rend$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Zerfetzen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Pourfendre$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Desgarrar$" + }, + "8": { + "#": "^산산조각 패시브 스킬 1개 추가$" + } + } + }, + "stat_3607300552": { + "id": "local_affliction_notable_renewal", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Renewal$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Renovação$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Обновление$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Renewal$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Erholung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Renouveau$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Renovación$" + }, + "8": { + "#": "^새로운 시작 패시브 스킬 1개 추가$" + } + } + }, + "stat_2233272527": { + "id": "local_affliction_notable_repeater", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Repeater$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Repetidor$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Повторитель$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Repeater$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Repetierer$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Tirs à répétition$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Repetidor$" + }, + "8": { + "#": "^연발 패시브 스킬 1개 추가$" + } + } + }, + "stat_1496043857": { + "id": "local_affliction_notable_replenishing_presence", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Replenishing Presence$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Presença Revigorante$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Восполняющее присутствие$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Replenishing Presence$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Erholsame Präsenz$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Présence revigorante$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Presencia regenerativa$" + }, + "8": { + "#": "^차오르는 존재감 패시브 스킬 1개 추가$" + } + } + }, + "stat_254194892": { + "id": "local_affliction_notable_riot_queller", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Riot Queller$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Matador de Motins$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Подавитель бунта$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Riot Queller$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Aufstandsunterdrücker$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Répresseur d'émeutes$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Aplacador de revueltas$" + }, + "8": { + "#": "^폭동 진압자 패시브 스킬 1개 추가$" + } + } + }, + "stat_713945233": { + "id": "local_affliction_notable_rot_resistant", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Rot-Resistant$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Resistênte a Podridão$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Гнилостойкий$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Rot-Resistant$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Verwesungsresistent$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Imputrescible$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Resistente a la podredumbre$" + }, + "8": { + "#": "^부식 저항 패시브 스킬 1개 추가$" + } + } + }, + "stat_2478282326": { + "id": "local_affliction_notable_rote_reinforcement", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Rote Reinforcement$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Reforço do Hábito$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Постоянная поддержка$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Rote Reinforcement$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Routineverstärkung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Renfort mnémotechnique$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Consolidación mecánica$" + }, + "8": { + "#": "^암기 강화 패시브 스킬 1개 추가$" + } + } + }, + "stat_2289610642": { + "id": "local_affliction_notable_rotten_claws", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Rotten Claws$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Garras Pútrefas$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Гнилые когти$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Rotten Claws$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Verfaulte Klauen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Griffes putréfiées$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Garras putrefactas$" + }, + "8": { + "#": "^썩은 발톱 패시브 스킬 1개 추가$" + } + } + }, + "stat_1488030420": { + "id": "local_affliction_notable_run_through", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Run Through$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Atravessar$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Пробежка$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Run Through$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Vandalismus$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est D'outre en outre$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Atravesar corriendo$" + }, + "8": { + "#": "^달음박질 패시브 스킬 1개 추가$" + } + } + }, + "stat_3638731729": { + "id": "local_affliction_notable_sadist", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Sadist$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Sádico$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Садист$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Sadist$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Sadist$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Sadique$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Sádico$" + }, + "8": { + "#": "^가학 성애자 패시브 스킬 1개 추가$" + } + } + }, + "stat_478147593": { + "id": "local_affliction_notable_sage", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Sage$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Sábio$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Мудрец$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Sage$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Weiser$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Sage$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Sabio$" + }, + "8": { + "#": "^현자 패시브 스킬 1개 추가$" + } + } + }, + "stat_715786975": { + "id": "local_affliction_notable_sap_psyche", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Sap Psyche$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Exaurir Psiquê$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Истощение души$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Sap Psyche$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Psychische Schwächung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Vampirisme de psyché$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Psique de debilitación$" + }, + "8": { + "#": "^무너지는 영체 패시브 스킬 1개 추가$" + } + } + }, + "stat_4222635921": { + "id": "local_affliction_notable_savage_response", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Savage Response$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Resposta Selvagem$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Жестокий ответ$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Savage Response$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Schwere Vergeltung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Réaction brutale$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Respuesta salvaje$" + }, + "8": { + "#": "^야만적인 응답 패시브 스킬 1개 추가$" + } + } + }, + "stat_3539175001": { + "id": "local_affliction_notable_savour_the_moment", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Savour the Moment$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Saboreie o Momento$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Спаситель момента$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Savour the Moment$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Den Moment auskosten$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Savourer l'instant$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Saborear el momento$" + }, + "8": { + "#": "^찰나의 음미 패시브 스킬 1개 추가$" + } + } + }, + "stat_2589589781": { + "id": "local_affliction_notable_scintillating_idea", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Scintillating Idea$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Ideia Cintilante$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Искрометная идея$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Scintillating Idea$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Brillante Idee$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Idée brillante$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Idea brillante$" + }, + "8": { + "#": "^번득이는 사고 패시브 스킬 1개 추가$" + } + } + }, + "stat_876846990": { + "id": "local_affliction_notable_seal_mender", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Seal Mender$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Cersidor de Selos$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Хранитель печати$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Seal Mender$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Siegelmeister$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Régénérateur de sceaux$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Reparador de sellos$" + }, + "8": { + "#": "^봉인 땜질 패시브 스킬 1개 추가$" + } + } + }, + "stat_2773515950": { + "id": "local_affliction_notable_second_skin", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Second Skin$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Segunda Pele$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Вторая кожа$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Second Skin$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Zweite Haut$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Seconde peau$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Segunda piel$" + }, + "8": { + "#": "^덧씌운 피부 패시브 스킬 1개 추가$" + } + } + }, + "stat_2261237498": { + "id": "local_affliction_notable_seeker_runes", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Seeker Runes$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Runas Perseguidoras$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Ищущие руны$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Seeker Runes$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Gierige Runen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Symboles traqueurs$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Runas del buscador$" + }, + "8": { + "#": "^탐색자의 룬 패시브 스킬 1개 추가$" + } + } + }, + "stat_2644533453": { + "id": "local_affliction_notable_self_fulfilling_prophecy", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Self-Fulfilling Prophecy$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Profecia Auto-Cumprida$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Самоисполняющееся пророчество$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Self-Fulfilling Prophecy$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Selbsterfüllende Prophezeiung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Prophétie autoréalisatrice$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Profecía autocumplida$" + }, + "8": { + "#": "^자기 실현적 예언 패시브 스킬 1개 추가$" + } + } + }, + "stat_4290522695": { + "id": "local_affliction_notable_septic_spells", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Septic Spells$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Magias Sépticas$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Заражающие чары$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Septic Spells$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Fauliger Zauber$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Sortilèges infectés$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Hechizos sépticos$" + }, + "8": { + "#": "^부패성 주문 패시브 스킬 1개 추가$" + } + } + }, + "stat_1101250813": { + "id": "local_affliction_notable_set_and_forget", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Set and Forget$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Preparar e Esquecer$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Сделать и забыть$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Set and Forget$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Fallenmeister$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Piéger et partir$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Poner y olvidarse$" + }, + "8": { + "#": "^자동 수행 패시브 스킬 1개 추가$" + } + } + }, + "stat_1476913894": { + "id": "local_affliction_notable_shifting_shadow", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Shifting Shadow$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Sombra Instável$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Изменчивая тень$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Shifting Shadow$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Veränderlicher Schatten$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Ombre mouvante$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Sombra cambiante$" + }, + "8": { + "#": "^변화하는 그림자 패시브 스킬 1개 추가$" + } + } + }, + "stat_2783012144": { + "id": "local_affliction_notable_shrieking_bolts", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Shrieking Bolts$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Raios Barulhentos$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Кричащие снаряды$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Shrieking Bolts$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Pfeifende Geschosse$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Traits hurlants$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Rayos chirriantes$" + }, + "8": { + "#": "^효시 패시브 스킬 1개 추가$" + } + } + }, + "stat_1290215329": { + "id": "local_affliction_notable_skeletal_atrophy", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Skeletal Atrophy$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Atrofia Esqueletal$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Костное истощение$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Skeletal Atrophy$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Knochenschwund$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Atrophie du squelette$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Atrofia esquelética$" + }, + "8": { + "#": "^해골의 위축 패시브 스킬 1개 추가$" + } + } + }, + "stat_315697256": { + "id": "local_affliction_notable_skullbreaker", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Skullbreaker$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Quebra-crânios$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Ломатель черепов$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Skullbreaker$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Schädelbrecher$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Brise-crâne$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Destroza-cráneos$" + }, + "8": { + "#": "^해골 분쇄자 패시브 스킬 1개 추가$" + } + } + }, + "stat_3993957711": { + "id": "local_affliction_notable_sleepless_sentries", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Sleepless Sentries$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Sentinelas Incansáveis$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Неспящие часовые$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Sleepless Sentries$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Ruhelose Geschütze$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Sentinelles inlassables$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Centinelas desvelados$" + }, + "8": { + "#": "^쉬지 않는 보초 패시브 스킬 1개 추가$" + } + } + }, + "stat_540300548": { + "id": "local_affliction_notable_smite_the_weak", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Smite the Weak$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Punir os Fracos$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Покарай слабых$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Smite the Weak$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Gnadenstoß$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Terrasser les faibles$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Golpea al débil$" + }, + "8": { + "#": "^약자 구타 패시브 스킬 1개 추가$" + } + } + }, + "stat_2322980282": { + "id": "local_affliction_notable_smoking_remains", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Smoking Remains$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Restos Esfumaçados$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Дымящиеся останки$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Smoking Remains$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Rauchende Überreste$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Restes fumants$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Restos humeantes$" + }, + "8": { + "#": "^그을린 유해 패시브 스킬 1개 추가$" + } + } + }, + "stat_3319205340": { + "id": "local_affliction_notable_snaring_spirits", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Snaring Spirits$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Espíritos Aprisionados$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Опутывающие духи$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Snaring Spirits$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Fesselnde Geister$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Esprits entravants$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Espíritus capturadores$" + }, + "8": { + "#": "^꾀어내는 혼 패시브 스킬 1개 추가$" + } + } + }, + "stat_1595367309": { + "id": "local_affliction_notable_snowstorm", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Snowstorm$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Tormenta de Neve$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Снежная буря$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Snowstorm$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Schneesturm$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Tempête de neige$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Tormenta de nieve$" + }, + "8": { + "#": "^눈 태풍 패시브 스킬 1개 추가$" + } + } + }, + "stat_4235300427": { + "id": "local_affliction_notable_special_reserve", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Special Reserve$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Reserva Especial$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Специальный запас$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Special Reserve$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Besondere Reserve$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Cuvée spéciale$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Reserva especial$" + }, + "8": { + "#": "^특별한 점유 패시브 스킬 1개 추가$" + } + } + }, + "stat_3372255769": { + "id": "local_affliction_notable_spiked_concoction", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Spiked Concoction$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Mistura Cravada$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Шипастое варево$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Spiked Concoction$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Konzentrat$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Concoction enivrante$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Brebaje con alcohol$" + }, + "8": { + "#": "^약을 탄 물약 패시브 스킬 1개 추가$" + } + } + }, + "stat_3603695769": { + "id": "local_affliction_notable_spring_back", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Spring Back$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Maleabilidade$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Успешное возвращение$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Spring Back$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Rasche Erholung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Ressaisissement$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Recuperación rápida$" + }, + "8": { + "#": "^재주 넘기 패시브 스킬 1개 추가$" + } + } + }, + "stat_2350668735": { + "id": "local_affliction_notable_stalwart_commander", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Stalwart Commander$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Comandante Resoluto$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Стойкий командир$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Stalwart Commander$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Tapferer Kommandant$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Commandant inébranlable$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Comandante fiel$" + }, + "8": { + "#": "^건장한 지휘관 패시브 스킬 1개 추가$" + } + } + }, + "stat_3500334379": { + "id": "local_affliction_notable_steady_torment", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Steady Torment$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Tormento Contínuo$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Стойкие мучения$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Steady Torment$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Unaufhörliche Qualen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Tourment immuable$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Tormento continuo$" + }, + "8": { + "#": "^꾸준한 격통 패시브 스킬 1개 추가$" + } + } + }, + "stat_1088949570": { + "id": "local_affliction_notable_stoic_focus", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Stoic Focus$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Foco Estóico$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Стойкое средоточие$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Stoic Focus$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Stoischer Fokus$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Focalisation stoïque$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Enfoque estoico$" + }, + "8": { + "#": "^엄격한 집중 패시브 스킬 1개 추가$" + } + } + }, + "stat_2087561637": { + "id": "local_affliction_notable_storm_drinker", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Storm Drinker$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Bebedor de Tormentas$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Пожинающий бурю$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Storm Drinker$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Sturmtrinker$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Buveur de tempête$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Bebedor de tormenta$" + }, + "8": { + "#": "^태풍 흡수자 패시브 스킬 1개 추가$" + } + } + }, + "stat_889728548": { + "id": "local_affliction_notable_stormrider", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Stormrider$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Calvagando a Tormenta$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Оседлавший грозу$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Stormrider$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Sturmreiter$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Chevaucheur de tempête$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Jinete de tormentas$" + }, + "8": { + "#": "^태풍의 기수 패시브 스킬 1개 추가$" + } + } + }, + "stat_1122051203": { + "id": "local_affliction_notable_storms_hand", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Storm's Hand$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Mão da Tormenta$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Длань шторма$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Storm's Hand$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Sturmhand$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Main de l'orage$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Mano de la tormenta$" + }, + "8": { + "#": "^태풍의 손 패시브 스킬 1개 추가$" + } + } + }, + "stat_1397498432": { + "id": "local_affliction_notable_streamlined", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Streamlined$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Simplificado$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Рационализм$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Streamlined$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Windschnittig$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Pénétration dans l'air$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Simplificado$" + }, + "8": { + "#": "^간소화 패시브 스킬 1개 추가$" + } + } + }, + "stat_282062371": { + "id": "local_affliction_notable_strike_leader", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Strike Leader$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Líder Golpeador$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Предводитель бунта$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Strike Leader$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Streikführer$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Meneur d'offensive$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Duro de roer$" + }, + "8": { + "#": "^타격대장 패시브 스킬 1개 추가$" + } + } + }, + "stat_2383914651": { + "id": "local_affliction_notable_stubborn_student", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Stubborn Student$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Estudante Teimoso$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Упертый студент$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Stubborn Student$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Hartnäckiger Schüler$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Élève obstiné$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Estudiante testarudo$" + }, + "8": { + "#": "^완고한 연구자 패시브 스킬 1개 추가$" + } + } + }, + "stat_3202667190": { + "id": "local_affliction_notable_student_of_decay", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Student of Decay$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Estudante da Decadência$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Адепт разложения$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Student of Decay$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Schüler des Verfalls$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Élève du déclin$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Estudiante de putrefacción$" + }, + "8": { + "#": "^부패 연구자 패시브 스킬 1개 추가$" + } + } + }, + "stat_1364858171": { + "id": "local_affliction_notable_sublime_sensation", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Sublime Sensation$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Sensação Sublime$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Возвышенные ощущения$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Sublime Sensation$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Erhabenes Gefühl$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Sensation sublime$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Sensación sublime$" + }, + "8": { + "#": "^숭고한 감각 패시브 스킬 1개 추가$" + } + } + }, + "stat_3226074658": { + "id": "local_affliction_notable_supercharge", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Supercharge$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Super Carga$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Сверхзаряд$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Supercharge$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Überladung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Supercharge$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Súper carga$" + }, + "8": { + "#": "^초과 충전 패시브 스킬 1개 추가$" + } + } + }, + "stat_3410752193": { + "id": "local_affliction_notable_surefooted_striker", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Surefooted Striker$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Golpeador Certeiro$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Нападающий$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Surefooted Striker$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Entschlossener Angriff$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Assaillant confiant$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Atacante firme$" + }, + "8": { + "#": "^굳건한 공격 패시브 스킬 1개 추가$" + } + } + }, + "stat_2410501331": { + "id": "local_affliction_notable_surging_vitality", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Surging Vitality$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Vitalidade Explosiva$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Бурная живучесть$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Surging Vitality$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Sprudelnde Vitalität$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Poussée de vitalité$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Vitalidad creciente$" + }, + "8": { + "#": "^솟구치는 활력 패시브 스킬 1개 추가$" + } + } + }, + "stat_3051562738": { + "id": "local_affliction_notable_surprise_sabotage", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Surprise Sabotage$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Sabotagem Surpresa$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Внезапная диверсия$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Surprise Sabotage$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Schwere Sabotage$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Sabotage surprise$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Sabotaje sorpresa$" + }, + "8": { + "#": "^기습적인 방해 패시브 스킬 1개 추가$" + } + } + }, + "stat_2631806437": { + "id": "local_affliction_notable_tempered_arrowheads", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Tempered Arrowheads$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Flechas Temperadas$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Закаленные наконечники$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Tempered Arrowheads$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Verstärkte Pfeilspitzen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Pointes de flèches trempées$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Puntas de flecha templadas$" + }, + "8": { + "#": "^단조한 화살촉 패시브 스킬 1개 추가$" + } + } + }, + "stat_177215332": { + "id": "local_affliction_notable_thaumophage", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Thaumophage$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Taumaturgo$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Чаромант$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Thaumophage$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Thaumophage$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Thaumophage$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Taumófago$" + }, + "8": { + "#": "^마석 항체 패시브 스킬 1개 추가$" + } + } + }, + "stat_1741700339": { + "id": "local_affliction_notable_thunderstruck", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Thunderstruck$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Tempestade de Raios$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Пораженный громом$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Thunderstruck$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Vom Blitz getroffen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Frappé par la foudre$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Fulminado$" + }, + "8": { + "#": "^벼락 직격 패시브 스킬 1개 추가$" + } + } + }, + "stat_2930275641": { + "id": "local_affliction_notable_titanic_swings", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Titanic Swings$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Golpes Titânicos$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Титанические взмахи$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Titanic Swings$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Gigantische Schwünge$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Coups titanesques$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Choques titánicos$" + }, + "8": { + "#": "^거대한 휘두르기 패시브 스킬 1개 추가$" + } + } + }, + "stat_2780712583": { + "id": "local_affliction_notable_touch_of_cruelty", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Touch of Cruelty$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Toque de Crueldade$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Толика жестокости$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Touch of Cruelty$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Grausame Berührung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Touche de cruauté$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Toque de crueldad$" + }, + "8": { + "#": "^잔혹한 손길 패시브 스킬 1개 추가$" + } + } + }, + "stat_3536778624": { + "id": "local_affliction_notable_towering_threat", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Towering Threat$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Grande Ameaça$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Возрастающая угроза$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Towering Threat$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Gewaltige Gefahr$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Menace imposante$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Amenaza imponente$" + }, + "8": { + "#": "^맹렬한 위협 패시브 스킬 1개 추가$" + } + } + }, + "stat_4186213466": { + "id": "local_affliction_notable_unholy_grace", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Unholy Grace$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Graça Profana$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Нечестивая милость$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Unholy Grace$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Sündhafte Anmut$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Grâce impie$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Gracia profana$" + }, + "8": { + "#": "^불경한 은총 패시브 스킬 1개 추가$" + } + } + }, + "stat_729163974": { + "id": "local_affliction_notable_unspeakable_gifts", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Unspeakable Gifts$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Presentes Inefáveis$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Несказанные дары$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Unspeakable Gifts$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Unerwartete Geschenke$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Dons indicibles$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Regalos innombrables$" + }, + "8": { + "#": "^형언불가 패시브 스킬 1개 추가$" + } + } + }, + "stat_2758966888": { + "id": "local_affliction_notable_untouchable", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Untouchable$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Intocável$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Неприкасаемый$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Untouchable$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Unerreichbar$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Intouchable$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Intocable$" + }, + "8": { + "#": "^최강 패시브 스킬 1개 추가$" + } + } + }, + "stat_367638058": { + "id": "local_affliction_notable_unwavering_focus", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Unwavering Focus$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Foco Inabalável$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Непоколебимое средоточие$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Unwavering Focus$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Beharrlicher Fokus$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Focalisation inflexible$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Enfoque inquebrantable$" + }, + "8": { + "#": "^변함없는 집중 패시브 스킬 1개 추가$" + } + } + }, + "stat_2788982914": { + "id": "local_affliction_notable_unwaveringly_evil", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Unwaveringly Evil$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Mal Inabalável$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Непоколебимое зло$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Unwaveringly Evil$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Beharrliches Übel$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Résolument mauvais$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Maldad inquebrantable$" + }, + "8": { + "#": "^변함없는 악 패시브 스킬 1개 추가$" + } + } + }, + "stat_1996576560": { + "id": "local_affliction_notable_vast_power", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Vast Power$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Vasto Poder$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Огромная сила$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Vast Power$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Grenzenlose Macht$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Pouvoir immense$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Poder inmenso$" + }, + "8": { + "#": "^막대한 힘 패시브 스킬 1개 추가$" + } + } + }, + "stat_2620267328": { + "id": "local_affliction_notable_vengeful_commander", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Vengeful Commander$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Comandante Vingador$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Мстительный командир$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Vengeful Commander$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Rachsüchtiger Kommandant$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Commandant vengeur$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Comandante vengativo$" + }, + "8": { + "#": "^복수의 지휘관 패시브 스킬 1개 추가$" + } + } + }, + "stat_664010431": { + "id": "local_affliction_notable_veteran_defender", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Veteran Defender$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Defensor Veterano$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Бывалый защитник$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Veteran Defender$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Erfahrener Verteidiger$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Défenseur vétéran$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Defensor veterano$" + }, + "8": { + "#": "^노련한 방어 패시브 스킬 1개 추가$" + } + } + }, + "stat_882876854": { + "id": "local_affliction_notable_vicious_bite", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Vicious Bite$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Mordida Perigosa$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Яростный укус$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Vicious Bite$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Tückischer Biss$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Morsure sauvage$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Mordisco despiadado$" + }, + "8": { + "#": "^포악한 이빨 패시브 스킬 1개 추가$" + } + } + }, + "stat_4054656914": { + "id": "local_affliction_notable_vicious_guard_", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Vicious Guard$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Guardião Perigoso$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Жестокий охранник$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Vicious Guard$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Tückischer Schutz$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Garde féroce$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Guardia despiadado$" + }, + "8": { + "#": "^포악한 방어 패시브 스킬 1개 추가$" + } + } + }, + "stat_567971948": { + "id": "local_affliction_notable_vicious_skewering", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Vicious Skewering$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Cutilada Perigosa$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Яростное пронзание$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Vicious Skewering$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Tückisches Aufspießen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Embrochement cruel$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Punzada cruel$" + }, + "8": { + "#": "^포악한 꿰기 패시브 스킬 1개 추가$" + } + } + }, + "stat_1936135020": { + "id": "local_affliction_notable_victim_maker", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Victim Maker$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Criador de Vítimas$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Жертводел$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Victim Maker$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Leichte Opfer$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Tortionnaire$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Victimario$" + }, + "8": { + "#": "^제물 제조기 패시브 스킬 1개 추가$" + } + } + }, + "stat_647201233": { + "id": "local_affliction_notable_vile_reinvigoration", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Vile Reinvigoration$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Revigoração Vil$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Мерзкое оживление$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Vile Reinvigoration$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Abscheuliche Neubelebung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Revivification ignoble$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Revitalización vil$" + }, + "8": { + "#": "^끔찍한 재활 패시브 스킬 1개 추가$" + } + } + }, + "stat_2134141047": { + "id": "local_affliction_notable_vital_focus", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Vital Focus$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Foco Vital$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Сосредоточенное восстановление$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Vital Focus$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Vitaler Fokus$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Focalisation vitale$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Enfoque vital$" + }, + "8": { + "#": "^필수적인 집중 패시브 스킬 1개 추가$" + } + } + }, + "stat_3957006524": { + "id": "local_affliction_notable_vivid_hues", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Vivid Hues$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Cores Vivas$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Насыщенные оттенки$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Vivid Hues$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Leuchtendes Rot$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Couleurs vives$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Tonos vivos$" + }, + "8": { + "#": "^선명한 빛깔 패시브 스킬 1개 추가$" + } + } + }, + "stat_1363668533": { + "id": "local_affliction_notable_wall_of_muscle", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Wall of Muscle$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Parede de Músculos$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Стена мышц$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Wall of Muscle$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Kraftprotz$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Montagne de muscles$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Pared de músculo$" + }, + "8": { + "#": "^근육 벽 패시브 스킬 1개 추가$" + } + } + }, + "stat_2454339320": { + "id": "local_affliction_notable_wardbreaker", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Forbidden Words$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Palavras Proibidas$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Неудержимая порча$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Wardbreaker$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Bannbrecher$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Mots interdits$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Palabras prohibidas$" + }, + "8": { + "#": "^금지된 어록 패시브 스킬 1개 추가$" + } + } + }, + "stat_578355556": { + "id": "local_affliction_notable_warning_call", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Warning Call$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Chamado Alarmante$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Предупреждающий зов$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Warning Call$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Warnruf$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Avertissement$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Llamada de advertencia$" + }, + "8": { + "#": "^경고 신호 패시브 스킬 1개 추가$" + } + } + }, + "stat_2066820199": { + "id": "local_affliction_notable_wasting_affliction", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Wasting Affliction$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Aflição Desperdiçada$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Истощающий недуг$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Wasting Affliction$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Dahinraffen$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Dégénérescence accablante$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Aflicción debilitante$" + }, + "8": { + "#": "^쓸모없는 고통 패시브 스킬 1개 추가$" + } + } + }, + "stat_2244243943": { + "id": "local_affliction_notable_weight_advantage", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Weight Advantage$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Vantagem do Peso$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Преимущество в весе$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Weight Advantage$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Gewichtsvorteil$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Avantage de poids$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Ventaja de peso$" + }, + "8": { + "#": "^중량의 우위 패시브 스킬 1개 추가$" + } + } + }, + "stat_156080652": { + "id": "local_affliction_notable_whispers_of_death", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Whispers of Death$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Sussurros da Morte$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Шепот смерти$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Whispers of Death$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Flüstern des Todes$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Murmures de la Mort$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Susurros de muerte$" + }, + "8": { + "#": "^죽음의 속삭임 패시브 스킬 1개 추가$" + } + } + }, + "stat_1616734644": { + "id": "local_affliction_notable_wicked_pall", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Wicked Pall$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Mortalha Estranha$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Злобная пелена$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Wicked Pall$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Leichentuch$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Suaire de perfidie$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Paño mortuorio$" + }, + "8": { + "#": "^사악한 휘장 패시브 스킬 1개 추가$" + } + } + }, + "stat_1678643716": { + "id": "local_affliction_notable_widespread_destruction", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Widespread Destruction$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Destruição Espalhada$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Всеобъемлющее разрушение$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Widespread Destruction$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Großflächige Zerstörung$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Destruction à grande échelle$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Destrucción masiva$" + }, + "8": { + "#": "^광범위 파괴 패시브 스킬 1개 추가$" + } + } + }, + "stat_1162352537": { + "id": "local_affliction_notable_will_shaper", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Will Shaper$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Moldador da Vontade$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Ваятель воли$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Will Shaper$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Geordnete Gedanken$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Façonneur de volonté$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Forjador de voluntad$" + }, + "8": { + "#": "^의지 형성자 패시브 스킬 1개 추가$" + } + } + }, + "stat_1938661964": { + "id": "local_affliction_notable_wind_up", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Wind-up$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Limite$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Разогрев$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Wind-up$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Weißglut$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Armer son coup$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Punzada de gracia$" + }, + "8": { + "#": "^마무리 일격 패시브 스킬 1개 추가$" + } + } + }, + "stat_755881431": { + "id": "local_affliction_notable_winter_prowler", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Winter Prowler$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Gatuno Invernal$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Зимний скиталец$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Winter Prowler$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Schneetreiber$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Rôdeur hivernal$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Acechador invernal$" + }, + "8": { + "#": "^겨울 배회자 패시브 스킬 1개 추가$" + } + } + }, + "stat_608164368": { + "id": "local_affliction_notable_wish_for_death", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Wish for Death$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Desejo Mortal$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Желание смерти$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Wish for Death$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Todeswunsch$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Désir de mort$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Desear la muerte$" + }, + "8": { + "#": "^죽음 갈망 패시브 스킬 1개 추가$" + } + } + }, + "stat_3078065247": { + "id": "local_affliction_notable_wizardry", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Wizardry$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Feitiçaria$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Волшебство$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Wizardry$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Zauberei$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Sorcellerie$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Hechicería$" + }, + "8": { + "#": "^기묘한 마법 패시브 스킬 1개 추가$" + } + } + }, + "stat_69078820": { + "id": "local_affliction_notable_wound_aggravation", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Wound Aggravation$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Agravar Ferimentos$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Усугубление ран$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Wound Aggravation$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: Salz in der Wunde$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Aggravation des blessures$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Agravación de la herida$" + }, + "8": { + "#": "^상처 악화 패시브 스킬 1개 추가$" + } + } + }, + "stat_241783558": { + "id": "local_affliction_notable_wrapped_in_flame", + "negated": false, + "text": { + "1": { + "#": "^1 Added Passive Skill is Wrapped in Flame$" + }, + "2": { + "#": "^1 das Habilidades Passivas Adicionadas é Envolta em Chamas$" + }, + "3": { + "#": "^1 добавленное пассивное умение - Окутанный пламенем$" + }, + "4": { + "#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา 1 จุดในนั้นคือ Wrapped in Flame$" + }, + "5": { + "#": "^1 hinzugefügte passive Fertigkeit ist: In Flammen gehüllt$" + }, + "6": { + "#": "^L'un des Talents passifs ajoutés est Enveloppe de flammes$" + }, + "7": { + "#": "^1 de las habilidades pasivas agregadas es Envuelto en llamas$" + }, + "8": { + "#": "^휘감은 화염 패시브 스킬 1개 추가$" + } + } + }, "stat_642457541": { "id": "local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed", "negated": false, @@ -91102,6 +101640,36 @@ } } }, + "stat_3426614534": { + "id": "local_flask_consumes_max_charges_on_use", + "negated": false, + "text": { + "1": { + "#": "^Consumes Maximum Charges to use$" + }, + "2": { + "#": "^Consome o Máximo de Cargas ao usar$" + }, + "3": { + "#": "^Расходует все заряды при использовании$" + }, + "4": { + "#": "^ใช้ชาร์จที่มีทั้งหมดเมื่อใช้งาน$" + }, + "5": { + "#": "^Verbraucht bei Nutzung maximale Füllungen$" + }, + "6": { + "#": "^Consomme toutes les Charges à l'utilisation$" + }, + "7": { + "#": "^Utilizarlo consume las cargas máximas$" + }, + "8": { + "#": "^사용을 위해 최대 충전 소모$" + } + } + }, "stat_1535051459": { "id": "local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect", "negated": false, @@ -91190,6 +101758,36 @@ } } }, + "stat_1655460656": { + "id": "local_flask_gain_charges_consumed_as_vaal_souls_on_use", + "negated": false, + "text": { + "1": { + "#": "^Gain Vaal Souls equal to Charges Consumed when used$" + }, + "2": { + "#": "^Ganha Almas Vaal igual às Cargas Consumidas ao usar$" + }, + "3": { + "#": "^Дарует души ваал в размере количества израсходованных при использовании зарядов$" + }, + "4": { + "#": "^ได้รับ Vaal Souls เท่ากับจำนวนชาร์จที่ใช้ไปเมื่อใช้งาน$" + }, + "5": { + "#": "^Erhaltet bei Nutzung Vaal-Seelen entsprechend der verbrauchten Füllungen$" + }, + "6": { + "#": "^Lorsque vous utilisez ce Flacon, vous gagnez un nombre d'Âmes vaal équivalent au nombre de Charges consommées$" + }, + "7": { + "#": "^Obtén tantas Almas Vaal como cargas consumiste al utilizarlo$" + }, + "8": { + "#": "^사용 시 소모한 충전 수와 동일한 개수의 바알 영혼 획득$" + } + } + }, "stat_74462130": { "id": "local_flask_life_recovery_from_flasks_also_recovers_energy_shield", "negated": false, @@ -91340,6 +101938,246 @@ } } }, + "stat_4079888060": { + "id": "local_jewel_expansion_jewels_count", + "negated": false, + "text": { + "1": { + "2|#": "^(\\S+) Added Passive Skills are Jewel Sockets$" + }, + "2": { + "2|#": "^(\\S+) das Habilidades Passivas adicionadas são Encaixes de Joia$" + }, + "3": { + "2|#": "^(\\S+) добавленных пассивных умений - гнезда для самоцветов$" + }, + "4": { + "2|#": "^ในบรรดาพาสซีพที่เพิ่มเข้ามา (\\S+) จุดในนั้นคือ รูใส่จิวเวล$" + }, + "5": { + "2|#": "^(\\S+) hinzugefügte passive Fertigkeiten sind Juwelenfassungen$" + }, + "6": { + "2|#": "^(\\S+) Talents passifs ajoutés sont des Châsses de Joyaux$" + }, + "7": { + "2|#": "^(\\S+) de las habilidades pasivas agregadas son engarces de joya$" + }, + "8": { + "2|#": "^주얼 슬롯 패시브 스킬 (\\S+)개 추가$" + } + } + }, + "stat_3860869243": { + "id": "local_jewel_expansion_keystone_disciple_of_kitava", + "negated": false, + "text": { + "1": { + "#": "^Adds Disciple of Kitava$" + }, + "2": { + "#": "^Adiciona Discípulo de Kitava$" + }, + "3": { + "#": "^Добавляет значимое умение Адепт Китавы$" + }, + "4": { + "#": "^เพิ่มพาสซีพ Disciple of Kitava$" + }, + "5": { + "#": "^Fügt hinzu: Jünger Kitavas$" + }, + "6": { + "#": "^Ajoute Disciple de Kitava$" + }, + "7": { + "#": "^Agrega Discípulo de Kitava$" + }, + "8": { + "#": "^키타바의 신봉자 추가$" + } + } + }, + "stat_1376530950": { + "id": "local_jewel_expansion_keystone_hollow_palm_technique", + "negated": false, + "text": { + "1": { + "#": "^Adds Hollow Palm Technique$" + }, + "2": { + "#": "^Adiciona Técnica da Palma Oca$" + }, + "3": { + "#": "^Добавляет ключевое умение Техника пустой длани$" + }, + "4": { + "#": "^เพิ่มพาสซีพ Hollow Palm Technique$" + }, + "5": { + "#": "^Fügt hinzu: Technik der leeren Hand$" + }, + "6": { + "#": "^Ajoute Technique de la Paume vide$" + }, + "7": { + "#": "^Agrega Técnica de la palma hueca$" + }, + "8": { + "#": "^공허의 손아귀 기술 추가$" + } + } + }, + "stat_1798719926": { + "id": "local_jewel_expansion_keystone_kineticism", + "negated": false, + "text": { + "1": { + "#": "^Adds Kineticism$" + }, + "2": { + "#": "^Adiciona Cineticismo$" + }, + "3": { + "#": "^Добавляет ключевое умение Кинетика$" + }, + "4": { + "#": "^เพิ่มพาสซีพ Kineticism$" + }, + "5": { + "#": "^Fügt hinzu: Kinetismus$" + }, + "6": { + "#": "^Ajoute Art cinétique$" + }, + "7": { + "#": "^Agrega Cinetismo$" + }, + "8": { + "#": "^역학의 예술 추가$" + } + } + }, + "stat_1505850286": { + "id": "local_jewel_expansion_keystone_lone_messenger", + "negated": false, + "text": { + "1": { + "#": "^Adds Lone Messenger$" + }, + "2": { + "#": "^Adiciona Mensageiro$" + }, + "3": { + "#": "^Добавляет ключевое умение Одинокий посланник$" + }, + "4": { + "#": "^เพิ่มพาสซีพ Lone Messenger$" + }, + "5": { + "#": "^Fügt hinzu: Einsamer Bote$" + }, + "6": { + "#": "^Ajoute Messager solitaire$" + }, + "7": { + "#": "^Agrega Mensajero solitario$" + }, + "8": { + "#": "^고독한 전달자 추가$" + } + } + }, + "stat_1360925132": { + "id": "local_jewel_expansion_keystone_natures_patience", + "negated": false, + "text": { + "1": { + "#": "^Adds Nature's Patience$" + }, + "2": { + "#": "^Adiciona Paciência da Natureza$" + }, + "3": { + "#": "^Добавляет ключевое умение Терпеливость природы$" + }, + "4": { + "#": "^เพิ่มพาสซีพ Nature's Patience$" + }, + "5": { + "#": "^Fügt hinzu: Geduld der Natur$" + }, + "6": { + "#": "^Ajoute Patience de la Nature$" + }, + "7": { + "#": "^Agrega Paciencia de la naturaleza$" + }, + "8": { + "#": "^자연의 인내 추가$" + } + } + }, + "stat_56720831": { + "id": "local_jewel_expansion_keystone_secrets_of_suffering", + "negated": false, + "text": { + "1": { + "#": "^Adds Secrets of Suffering$" + }, + "2": { + "#": "^Adiciona Segredos do Sofrimento$" + }, + "3": { + "#": "^Добавляет ключевое умение Секреты страданий$" + }, + "4": { + "#": "^เพิ่มพาสซีพ Secrets of Suffering$" + }, + "5": { + "#": "^Fügt hinzu: Geheimnisse des Leidens$" + }, + "6": { + "#": "^Ajoute Secrets de la souffrance$" + }, + "7": { + "#": "^Agrega Secretos del sufrimiento$" + }, + "8": { + "#": "^고통의 비밀 추가$" + } + } + }, + "stat_1379205566": { + "id": "local_jewel_expansion_keystone_veterans_awareness", + "negated": false, + "text": { + "1": { + "#": "^Adds Veteran's Awareness$" + }, + "2": { + "#": "^Adiciona Astúcia do Veterano$" + }, + "3": { + "#": "^Добавляет ключевое умение Предчувствие ветерана$" + }, + "4": { + "#": "^เพิ่มพาสซีพ Veteran's Awareness$" + }, + "5": { + "#": "^Fügt hinzu: Achtsamkeit des Veteranen$" + }, + "6": { + "#": "^Ajoute Expérience du Vétéran$" + }, + "7": { + "#": "^Agrega Alerta del veterano$" + }, + "8": { + "#": "^노병의 마음가짐 추가$" + } + } + }, "stat_3647242059": { "id": "local_left_ring_slot_projectiles_from_spells_cannot_chain", "negated": false, @@ -91400,6 +102238,36 @@ } } }, + "stat_625885138": { + "id": "local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura", + "negated": false, + "text": { + "1": { + "#": "^Left Ring Slot: Your Chilling Skitterbot's Aura applies Socketed Curse instead$" + }, + "2": { + "#": "^Espaço para Anel Esquerdo: Sua Aura Resfriante dos Robôs Rastejantes aplica a Maldição Encaixada ao invés$" + }, + "3": { + "#": "^Кольцо в левом слоте: вместо охлаждающей ауры ваших мехаботов применяется размещенное проклятие$" + }, + "4": { + "#": "^ช่องใส่แหวนซ้าย: ออร่าหนาวเย็นของ หุ่นยนต์จิ๋ว จะถูกเปลี่ยนเป็นทำให้ศัตรูโดน คำสาป ที่ใส่ไว้แทน$" + }, + "5": { + "#": "^Linker Ringfinger: Die unterkühlende Aura Eurer Arachnobots wendet stattdessen den eingefassten Fluch an$" + }, + "6": { + "#": "^Emplacement de bague de gauche : L'Aura de votre Arachnobot frigorifiant applique à la place la Malédiction Enchâssée$" + }, + "7": { + "#": "^Espacio para anillo izquierdo: El aura de tu robot escurridizo escarchante aplica la maldición engarzada en su lugar$" + }, + "8": { + "#": "^왼쪽 반지 슬롯: 냉각 원격 기폭 장치의 오라 대신 장착된 저주 부여$" + } + } + }, "stat_1649099067": { "id": "local_life_gain_per_target_vs_blinded_enemies", "negated": false, @@ -91648,6 +102516,36 @@ } } }, + "stat_1809329372": { + "id": "local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura", + "negated": false, + "text": { + "1": { + "#": "^Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Curse instead$" + }, + "2": { + "#": "^Espaço para Anel Direito: Sua Aura Eletrizante dos Robôs Rastejantes aplica a Maldição Encaixada ao invés$" + }, + "3": { + "#": "^Кольцо в правом слоте: вместо накладывающей шок ауры мехаботов применяется размещенное проклятие$" + }, + "4": { + "#": "^ช่องใส่แหวนขวา: ออร่าช็อคของ หุ่นยนต์จิ๋ว จะถูกเปลี่ยนเป็นทำให้ศัตรูโดน คำสาป ที่ใส่ไว้แทน$" + }, + "5": { + "#": "^Rechter Ringfinger: Die schockende Aura Eurer Arachnobots wendet stattdessen den eingefassten Fluch an$" + }, + "6": { + "#": "^Emplacement de bague de droite : L'Aura de votre Arachnobot électrocutant applique à la place la Malédiction Enchâssée$" + }, + "7": { + "#": "^Espacio para anillo derecho: El aura de tu robot escurridizo electrocutante aplica la maldición engarzada en su lugar$" + }, + "8": { + "#": "^오른쪽 반지 슬롯: 감전 원격 기폭 장치의 오라 대신 장착된 저주 부여$" + } + } + }, "stat_200113086": { "id": "local_ring_nova_spells_area_of_effect_+%_final", "negated": false, @@ -91844,6 +102742,44 @@ } } }, + "stat_778036553": { + "id": "local_unique_flask_vaal_skill_critical_strike_chance_+%_during_flask_effect", + "negated": false, + "text": { + "1": { + "1|#": "^Vaal Skills have (\\S+)% increased Critical Strike Chance during effect$", + "N#|-1": "^Vaal Skills have (\\S+)% reduced Critical Strike Chance during effect$" + }, + "2": { + "1|#": "^Habilidades Vaal têm Chance de Acerto Crítico aumentada em (\\S+)% durante o efeito$", + "N#|-1": "^Habilidades Vaal têm Chance de Acerto Crítico reduzida em (\\S+)% durante o efeito$" + }, + "3": { + "1|#": "^Умения ваал имеют (\\S+)% повышение шанса критического удара во время эффекта$", + "N#|-1": "^Умения ваал имеют (\\S+)% снижение шанса критического удара во время эффекта$" + }, + "4": { + "1|#": "^เพิ่มโอกาสคริติคอลของสกิล วาล์ (\\S+)% ระหว่างผลของยา$", + "N#|-1": "^ลดโอกาสคริติคอลของสกิล วาล์ (\\S+)% ระหว่างผลของยา$" + }, + "5": { + "1|#": "^Vaal-Fertigkeiten haben während Fläschchenwirkung (\\S+)% erhöhte kritische Trefferchance$", + "N#|-1": "^Vaal-Fertigkeiten haben während Fläschchenwirkung (\\S+)% verringerte kritische Trefferchance$" + }, + "6": { + "1|#": "^Les Aptitudes vaal ont (\\S+)% d'Augmentation des Chances de coup critique pendant l'Effet de ce Flacon$", + "N#|-1": "^Les Aptitudes vaal ont (\\S+)% de Perte des Chances de coup critique pendant l'Effet de ce Flacon$" + }, + "7": { + "1|#": "^Las habilidades vaal tienen probabilidad de golpe crítico aumentada un (\\S+)% durante el efecto$", + "N#|-1": "^Las habilidades vaal tienen probabilidad de golpe crítico reducida un (\\S+)% durante el efecto$" + }, + "8": { + "1|#": "^플라스크 효과를 받는 동안 바알 스킬 치명타 확률 (\\S+)% 증가$", + "N#|-1": "^플라스크 효과를 받는 동안 바알 스킬 치명타 확률 (\\S+)% 감소$" + } + } + }, "stat_4067144129": { "id": "local_unique_flask_vaal_skill_damage_+%_during_flask_effect", "negated": false, @@ -92026,6 +102962,44 @@ } } }, + "stat_100820057": { + "id": "local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius", + "negated": false, + "text": { + "1": { + "1|#": "^\\+(\\S+) to Accuracy Rating per 10 Dexterity on Unallocated Passives in Radius$", + "N#|-1": "^-(\\S+) to Accuracy Rating per 10 Dexterity on Unallocated Passives in Radius$" + }, + "2": { + "1|#": "^\\+(\\S+) à Precisão por cada 10 de Destreza em Passivas Não Alocadas no Raio$", + "N#|-1": "^-(\\S+) à Precisão por cada 10 de Destreza em Passivas Não Alocadas no Raio$" + }, + "3": { + "1|#": "^\\+(\\S+) к меткости за 10 ловкости в невыбранных пассивных умениях в радиусе$", + "N#|-1": "^-(\\S+) к меткости за 10 ловкости в невыбранных пассивных умениях в радиусе$" + }, + "4": { + "1|#": "^ค่า ความแม่นยำ (\\S+) ต่อค่า Dexterity ที่ไม่ได้จัดสรรไว้ในรัศมีทุก 10 แต้ม$", + "N#|-1": "^ค่า ความแม่นยำ (\\S+) ต่อค่า Dexterity ที่ไม่ได้จัดสรรไว้ในรัศมีทุก 10 แต้ม$" + }, + "5": { + "1|#": "^\\+(\\S+) zu Treffgenauigkeit pro 10 Geschick aus nicht zugewiesenen Passiven im Radius$", + "N#|-1": "^-(\\S+) zu Treffgenauigkeit pro 10 Geschick aus nicht zugewiesenen Passiven im Radius$" + }, + "6": { + "1|#": "^\\+(\\S+) au Score de Précision tous les 10 de Dextérité dans les Talents passifs non attribués dans le Rayon$", + "N#|-1": "^-(\\S+) au Score de Précision tous les 10 de Dextérité dans les Talents passifs non attribués dans le Rayon$" + }, + "7": { + "1|#": "^\\+(\\S+) a la precisión por cada 10 de destreza de habilidades pasivas sin asignar dentro del radio$", + "N#|-1": "^-(\\S+) a la precisión por cada 10 de destreza de habilidades pasivas sin asignar dentro del radio$" + }, + "8": { + "1|#": "^반경 내 할당되지 않은 패시브 스킬의 민첩 10당 정확도 \\+(\\S+)$", + "N#|-1": "^반경 내 할당되지 않은 패시브 스킬의 민첩 10당 정확도 (\\S+)$" + } + } + }, "stat_3881647885": { "id": "local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius", "negated": false, @@ -92056,6 +103030,36 @@ } } }, + "stat_435737693": { + "id": "local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius", + "negated": false, + "text": { + "1": { + "#": "^With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds$" + }, + "2": { + "#": "^Com ao menos 40 de Inteligência no Raio, Mangra inflige Definhar por 2 segundos$" + }, + "3": { + "#": "^Если в радиусе есть минимум 40 интеллекта, Мор накладывает Истощение на 2 секунды$" + }, + "4": { + "#": "^ถ้ามี Intelligence ในรัศมีครบ 40 หน่วย: Blight ทำให้ศัตรูติดสถานะ Withered เป็นเวลา 2 วินาที$" + }, + "5": { + "#": "^Bei mindestens 40 Intelligenz im Radius verursacht 'Pesthauch' für 2 Sekunden Verkümmerung$" + }, + "6": { + "#": "^Avec au moins 40 d'Intelligence dans le Rayon, Fléau inflige Flétrissure pendant 2 secondes$" + }, + "7": { + "#": "^Con al menos 40 de inteligencia dentro del radio, Plaga aplica Marchito por 2 segundos$" + }, + "8": { + "#": "^반경 내 지능이 40 이상이면 황폐가 2초 동안 위축 적용$" + } + } + }, "stat_2181499453": { "id": "local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius", "negated": false, @@ -92176,6 +103180,36 @@ } } }, + "stat_1994121713": { + "id": "local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius", + "negated": false, + "text": { + "1": { + "#": "^(\\S+)% to Damage over Time Multiplier per 10 Intelligence on Unallocated Passives in Radius$" + }, + "2": { + "#": "^(\\S+)% de Multiplicador de Dano Degenerativo por cada 10 de Inteligência em Passivas Não Alocadas no Raio$" + }, + "3": { + "#": "^(\\S+)% к множителю постепенного урона за 10 интеллекта в невыбранных пассивных умениях в радиусе$" + }, + "4": { + "#": "^ตัวคูณความเสียหายต่อเนื่อง (\\S+)% ต่อค่า Intelligence 10 หน่วยที่ไม่ได้จัดสรรไว้ในรัศมี$" + }, + "5": { + "#": "^(\\S+)% zu Multiplikator für Schaden über Zeit pro 10 Intelligenz aus nicht zugewiesenen Passiven im Radius$" + }, + "6": { + "#": "^(\\S+)% au Multiplicateur de dégâts sur la durée tous les 10 d'Intelligence dans les Talents passifs non attribués dans le Rayon$" + }, + "7": { + "#": "^(\\S+)% al multiplicador de daño degenerativo por cada 10 de inteligencia de habilidades pasivas sin asignar dentro del radio$" + }, + "8": { + "#": "^반경 내 할당되지 않은 패시브 스킬의 지능 10당 지속 피해 배율 (\\S+)%$" + } + } + }, "stat_3765671129": { "id": "local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius", "negated": false, @@ -92724,6 +103758,82 @@ } } }, + "stat_235105674": { + "id": "local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius", + "negated": false, + "text": { + "1": { + "1|#": "^(\\S+)% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius$", + "N#|-1": "^(\\S+)% reduced Life Recovery Rate per 10 Strength on Allocated Passives in Radius$" + }, + "2": { + "1|#": "^Taxa de Recuperação de Vida aumentada em (\\S+)% por cada 10 de Força em Passivas Alocadas no Raio$", + "N#|-1": "^Taxa de Recuperação de Vida reduzida em (\\S+)% por cada 10 de Força em Passivas Alocadas no Raio$" + }, + "3": { + "1|#": "^(\\S+)% повышение скорости восстановления здоровья за 10 силы в выбранных пассивных умениях в радиусе$", + "N#|-1": "^(\\S+)% снижение скорости восстановления здоровья за 10 силы в выбранных пассивных умениях в радиусе$" + }, + "4": { + "1|#": "^เพิ่มอัตราการฟื้นฟู พลังชีวิต (\\S+)% ต่อค่า Strength 10 หน่วยที่ถูกจัดสรรไว้ในรัศมี$", + "N#|-1": "^ลดอัตราการฟื้นฟู พลังชีวิต (\\S+)% ต่อค่า Strength 10 หน่วยที่ถูกจัดสรรไว้ในรัศมี$" + }, + "5": { + "1|#": "^(\\S+)% erhöhte Lebenswiederherstellungs-Rate pro 10 Stärke aus zugewiesenen Passiven im Radius$", + "N#|-1": "^(\\S+)% verringerte Lebenswiederherstellungs-Rate pro 10 Stärke aus zugewiesenen Passiven im Radius$" + }, + "6": { + "1|#": "^(\\S+)% d'Augmentation de la Récupération de Vie tous les 10 de Force dans les Talents passifs attribués dans le Rayon$", + "N#|-1": "^(\\S+)% de Réduction de la Récupération de Vie tous les 10 de Force dans les Talents passifs attribués dans le Rayon$" + }, + "7": { + "1|#": "^Índice de recuperación de vida aumentado un (\\S+)% por cada 10 de fuerza de habilidades pasivas asignadas dentro del radio$", + "N#|-1": "^Índice de recuperación de vida reducido un (\\S+)% por cada 10 de fuerza de habilidades pasivas asignadas dentro del radio$" + }, + "8": { + "1|#": "^반경 내 할당된 패시브 스킬의 힘 10당 생명력 회복 속도 (\\S+)% 증가$", + "N#|-1": "^반경 내 할당된 패시브 스킬의 힘 10당 생명력 회복 속도 (\\S+)% 감소$" + } + } + }, + "stat_4144221848": { + "id": "local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius", + "negated": false, + "text": { + "1": { + "1|#": "^(\\S+)% increased Life Recovery Rate per 10 Strength on Unallocated Passives in Radius$", + "N#|-1": "^(\\S+)% reduced Life Recovery Rate per 10 Strength on Unallocated Passives in Radius$" + }, + "2": { + "1|#": "^Taxa de Recuperação de Vida aumentada em (\\S+)% por cada 10 de Força em Passivas Não Alocadas no Raio$", + "N#|-1": "^Taxa de Recuperação de Vida reduzida em (\\S+)% por cada 10 de Força em Passivas Não Alocadas no Raio$" + }, + "3": { + "1|#": "^(\\S+)% повышение скорости восстановления здоровья за 10 силы в невыбранных пассивных умениях в радиусе$", + "N#|-1": "^(\\S+)% снижение скорости восстановления здоровья за 10 силы в невыбранных пассивных умениях в радиусе$" + }, + "4": { + "1|#": "^เพิ่มอัตราการฟื้นฟู พลังชีวิต (\\S+)% ต่อค่า Strength 10 หน่วยที่ไม่ได้ถูกจัดสรรไว้ในรัศมี$", + "N#|-1": "^ลดอัตราการฟื้นฟู พลังชีวิต (\\S+)% ต่อค่า Strength 10 หน่วยที่ไม่ได้ถูกจัดสรรไว้ในรัศมี$" + }, + "5": { + "1|#": "^(\\S+)% erhöhte Lebenswiederherstellungs-Rate pro 10 Stärke aus nicht zugewiesenen Passiven im Radius$", + "N#|-1": "^(\\S+)% verringerte Lebenswiederherstellungs-Rate pro 10 Stärke aus nicht zugewiesenen Passiven im Radius$" + }, + "6": { + "1|#": "^(\\S+)% d'Augmentation de la Récupération de Vie tous les 10 de Force dans les Talents passifs non attribués dans le Rayon$", + "N#|-1": "^(\\S+)% de Réduction de la Récupération de Vie tous les 10 de Force dans les Talents passifs non attribués dans le Rayon$" + }, + "7": { + "1|#": "^Índice de recuperación de vida aumentado un (\\S+)% por cada 10 de fuerza de habilidades pasivas sin asignar dentro del radio$", + "N#|-1": "^Índice de recuperación de vida reducido un (\\S+)% por cada 10 de fuerza de habilidades pasivas sin asignar dentro del radio$" + }, + "8": { + "1|#": "^반경 내 할당되지 않은 패시브 스킬의 힘 10당 생명력 회복 속도 (\\S+)% 증가$", + "N#|-1": "^반경 내 할당되지 않은 패시브 스킬의 힘 10당 생명력 회복 속도 (\\S+)% 감소$" + } + } + }, "stat_1224928411": { "id": "local_unique_jewel_lightning_resistance_also_grants_block_spells_chance_scaled_%", "negated": false, @@ -92852,6 +103962,82 @@ } } }, + "stat_514215387": { + "id": "local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius", + "negated": false, + "text": { + "1": { + "1|#": "^(\\S+)% increased Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius$", + "N#|-1": "^(\\S+)% reduced Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius$" + }, + "2": { + "1|#": "^Taxa de Recuperação de Mana aumentada em (\\S+)% por cada 10 de Inteligência em Passivas Alocadas no Raio$", + "N#|-1": "^Taxa de Recuperação de Mana reduzida em (\\S+)% por cada 10 de Inteligência em Passivas Alocadas no Raio$" + }, + "3": { + "1|#": "^(\\S+)% повышение скорости восстановления маны за 10 интеллекта в выбранных пассивных умениях в радиусе$", + "N#|-1": "^(\\S+)% снижение скорости восстановления маны за 10 интеллекта в выбранных пассивных умениях в радиусе$" + }, + "4": { + "1|#": "^เพิ่มอัตราการฟื้นฟู มานา (\\S+)% ต่อค่า Intelligence 10 หน่วยที่ถูกจัดสรรไว้ในรัศมี$", + "N#|-1": "^ลดอัตราการฟื้นฟู มานา (\\S+)% ต่อค่า Intelligence 10 หน่วยที่ถูกจัดสรรไว้ในรัศมี$" + }, + "5": { + "1|#": "^(\\S+)% erhöhte Manawiederherstellungs-Rate pro 10 Intelligenz aus zugewiesenen Passiven im Radius$", + "N#|-1": "^(\\S+)% verringerte Manawiederherstellungs-Rate pro 10 Intelligenz aus zugewiesenen Passiven im Radius$" + }, + "6": { + "1|#": "^(\\S+)% d'Augmentation de la Récupération de Mana tous les 10 d'Intelligence dans les Talents passifs attribués dans le Rayon$", + "N#|-1": "^(\\S+)% de Réduction de la Récupération de Mana tous les 10 d'Intelligence dans les Talents passifs attribués dans le Rayon$" + }, + "7": { + "1|#": "^Índice de recuperación de maná aumentado un (\\S+)% por cada 10 de inteligencia de habilidades pasivas asignadas dentro del radio$", + "N#|-1": "^Índice de recuperación de maná reducido un (\\S+)% por cada 10 de inteligencia de habilidades pasivas asignadas dentro del radio$" + }, + "8": { + "1|#": "^반경 내 할당된 패시브 스킬의 지능 10당 마나 회복 속도 (\\S+)% 증가$", + "N#|-1": "^반경 내 할당된 패시브 스킬의 지능 10당 마나 회복 속도 (\\S+)% 감소$" + } + } + }, + "stat_1439347620": { + "id": "local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius", + "negated": false, + "text": { + "1": { + "1|#": "^(\\S+)% increased Mana Recovery Rate per 10 Intelligence on Unallocated Passives in Radius$", + "N#|-1": "^(\\S+)% reduced Mana Recovery Rate per 10 Intelligence on Unallocated Passives in Radius$" + }, + "2": { + "1|#": "^Taxa de Recuperação de Mana aumentada em (\\S+)% por cada 10 de Inteligência em Passivas Não Alocadas no Raio$", + "N#|-1": "^Taxa de Recuperação de Mana reduzida em (\\S+)% por cada 10 de Inteligência em Passivas Não Alocadas no Raio$" + }, + "3": { + "1|#": "^(\\S+)% повышение скорости восстановления маны за 10 интеллекта в невыбранных пассивных умениях в радиусе$", + "N#|-1": "^(\\S+)% снижение скорости восстановления маны за 10 интеллекта в невыбранных пассивных умениях в радиусе$" + }, + "4": { + "1|#": "^เพิ่มอัตราการฟื้นฟู มานา (\\S+)% ต่อค่า Intelligence 10 หน่วยที่ไม่ได้ถูกจัดสรรไว้ในรัศมี$", + "N#|-1": "^ลดอัตราการฟื้นฟู มานา (\\S+)% ต่อค่า Intelligence 10 หน่วยที่ไม่ได้ถูกจัดสรรไว้ในรัศมี$" + }, + "5": { + "1|#": "^(\\S+)% erhöhte Manawiederherstellungs-Rate pro 10 Intelligenz aus nicht zugewiesenen Passiven im Radius$", + "N#|-1": "^(\\S+)% verringerte Manawiederherstellungs-Rate pro 10 Intelligenz aus nicht zugewiesenen Passiven im Radius$" + }, + "6": { + "1|#": "^(\\S+)% d'Augmentation de la Récupération de Mana tous les 10 d'Intelligence dans les Talents passifs non attribués dans le Rayon$", + "N#|-1": "^(\\S+)% de Réduction de la Récupération de Mana tous les 10 d'Intelligence dans les Talents passifs non attribués dans le Rayon$" + }, + "7": { + "1|#": "^Índice de recuperación de maná aumentado un (\\S+)% por cada 10 de inteligencia de habilidades pasivas sin asignar dentro del radio$", + "N#|-1": "^Índice de recuperación de maná reducido un (\\S+)% por cada 10 de inteligencia de habilidades pasivas sin asignar dentro del radio$" + }, + "8": { + "1|#": "^반경 내 할당되지 않은 패시브 스킬의 지능 10당 마나 회복 속도 (\\S+)% 증가$", + "N#|-1": "^반경 내 할당되지 않은 패시브 스킬의 지능 10당 마나 회복 속도 (\\S+)% 감소$" + } + } + }, "stat_2845889407": { "id": "local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius", "negated": false, @@ -92912,6 +104098,44 @@ } } }, + "stat_4169318921": { + "id": "local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius", + "negated": false, + "text": { + "1": { + "1|#": "^(\\S+)% increased Movement Speed per 10 Dexterity on Unallocated Passives in Radius$", + "N#|-1": "^(\\S+)% reduced Movement Speed per 10 Dexterity on Unallocated Passives in Radius$" + }, + "2": { + "1|#": "^Velocidade de Movimento aumentada em (\\S+)% por cada 10 de Destreza em Passivas Não Alocadas no Raio$", + "N#|-1": "^Velocidade de Movimento reduzida em (\\S+)% por cada 10 de Destreza em Passivas Não Alocadas no Raio$" + }, + "3": { + "1|#": "^(\\S+)% повышение скорости передвижения за 10 ловкости в невыбранных пассивных умениях в радиусе$", + "N#|-1": "^(\\S+)% снижение скорости передвижения за 10 ловкости в невыбранных пассивных умениях в радиусе$" + }, + "4": { + "1|#": "^เพิ่มความเร็วในการเคลื่อนที่ (\\S+)% ต่อค่า Dexterity 10 หน่วยที่ไม่ได้จัดสรรไว้ในรัศมี$", + "N#|-1": "^ลดความเร็วในการเคลื่อนที่ (\\S+)% ต่อค่า Dexterity 10 หน่วยที่ไม่ได้จัดสรรไว้ในรัศมี$" + }, + "5": { + "1|#": "^(\\S+)% erhöhte Bewegungsgeschwindigkeit pro 10 Geschick aus nicht zugewiesenen Passiven im Radius$", + "N#|-1": "^(\\S+)% verringerte Bewegungsgeschwindigkeit pro 10 Geschick aus nicht zugewiesenen Passiven im Radius$" + }, + "6": { + "1|#": "^(\\S+)% d'Augmentation de la Vitesse de déplacement tous les 10 de Dextérité dans les Talents passifs non attribués dans le Rayon$", + "N#|-1": "^(\\S+)% de Réduction de la Vitesse de déplacement tous les 10 de Dextérité dans les Talents passifs non attribués dans le Rayon$" + }, + "7": { + "1|#": "^Velocidad de movimiento aumentada un (\\S+)% por cada 10 de destreza de habilidades pasivas sin asignar dentro del radio$", + "N#|-1": "^Velocidad de movimiento reducida un (\\S+)% por cada 10 de destreza de habilidades pasivas sin asignar dentro del radio$" + }, + "8": { + "1|#": "^반경 내 할당되지 않은 패시브 스킬의 민첩 10당 이동 속도 (\\S+)% 증가$", + "N#|-1": "^반경 내 할당되지 않은 패시브 스킬의 민첩 10당 이동 속도 (\\S+)% 감소$" + } + } + }, "stat_607548408": { "id": "local_unique_jewel_non_keystone_passive_in_radius_effect_+%", "negated": false, @@ -102205,6 +113429,36 @@ } } }, + "stat_2495041954": { + "id": "enemy_phys_reduction_%_penalty_vs_hit", + "negated": true, + "text": { + "1": { + "N#": "^Enemies have (\\S+)% to Total Physical Damage Reduction against your Hits \\(implicit\\)$" + }, + "2": { + "N#": "^Inimigos têm (\\S+)% de Redução de Dano Físico Total contra seus Acertos \\(implicit\\)$" + }, + "3": { + "N#": "^Враги имеют (\\S+)% к итоговому уменьшению получаемого физического урона от ваших ударов \\(implicit\\)$" + }, + "4": { + "N#": "^ศัตรูที่คุณปะทะจะมี ป้องกันกายภาพ (\\S+)% \\(implicit\\)$" + }, + "5": { + "N#": "^Gegner haben (\\S+)% zu gesamter physischer Schadensminderung gegen Eure Treffer \\(implicit\\)$" + }, + "6": { + "N#": "^Les Ennemis ont (\\S+)% à leur Total de Réduction des Dégâts physiques au Toucher contre vous \\(implicit\\)$" + }, + "7": { + "N#": "^Los enemigos tienen (\\S+)% a la reducción total de daño físico contra tus golpes \\(implicit\\)$" + }, + "8": { + "N#": "^명중 시 적들의 총 물리 피해 감소 (\\S+)% \\(implicit\\)$" + } + } + }, "stat_2101383955": { "id": "reduce_enemy_elemental_resistance_%", "negated": false, @@ -107375,6 +118629,44 @@ } } }, + "stat_3577248251": { + "id": "reflect_damage_taken_and_minion_reflect_damage_taken_+%", + "negated": true, + "text": { + "1": { + "1|#": "^You and your Minions take (\\S+)% increased Reflected Damage \\(implicit\\)$", + "N#|-1": "^You and your Minions take (\\S+)% reduced Reflected Damage \\(implicit\\)$" + }, + "2": { + "1|#": "^Você e seus Lacaios sofrem Dano Refletido aumentado em (\\S+)% \\(implicit\\)$", + "N#|-1": "^Você e seus Lacaios sofrem Dano Refletido reduzido em (\\S+)% \\(implicit\\)$" + }, + "3": { + "1|#": "^Вы и ваши приспешники получаете увеличенный на (\\S+)% отраженный урон \\(implicit\\)$", + "N#|-1": "^Вы и ваши приспешники получаете уменьшенный на (\\S+)% отраженный урон \\(implicit\\)$" + }, + "4": { + "1|#": "^คุณและมิเนียนของคุณจะ เพิ่มความเสียหายที่ได้รับจากการสะท้อน (\\S+)% \\(implicit\\)$", + "N#|-1": "^คุณและมิเนียนของคุณจะ ลดความเสียหายที่ได้รับจากการสะท้อน (\\S+)% \\(implicit\\)$" + }, + "5": { + "1|#": "^Ihr und Eure Kreaturen erleiden (\\S+)% erhöhten reflektieren Schaden \\(implicit\\)$", + "N#|-1": "^Ihr und Eure Kreaturen erleiden (\\S+)% verringerten reflektieren Schaden \\(implicit\\)$" + }, + "6": { + "1|#": "^Vous et vos Créatures avez (\\S+)% d'Augmentation des Dégâts Renvoyés que vous subissez \\(implicit\\)$", + "N#|-1": "^Vous et vos Créatures avez (\\S+)% de Réduction des Dégâts Renvoyés que vous subissez \\(implicit\\)$" + }, + "7": { + "1|#": "^Tus esbirros y tú reciben daño reflejado aumentado un (\\S+)% \\(implicit\\)$", + "N#|-1": "^Tus esbirros y tú reciben daño reflejado reducido un (\\S+)% \\(implicit\\)$" + }, + "8": { + "1|#": "^자신 및 소환수가 반사로 받는 피해 (\\S+)% 증가 \\(implicit\\)$", + "N#|-1": "^자신 및 소환수가 반사로 받는 피해 (\\S+)% 감소 \\(implicit\\)$" + } + } + }, "stat_3296873305": { "id": "remove_chill_and_freeze_on_flask_use", "negated": false, @@ -146253,6 +157545,36 @@ } } }, + "stat_3519675720": { + "id": "blast_rain_number_of_blasts", + "negated": false, + "text": { + "1": { + "1": "^Blast Rain fires an additional Arrow$" + }, + "2": { + "1": "^Chuva Explosiva dispara uma Flecha Adicional$" + }, + "3": { + "1": "^Дождь взрывов выпускает дополнительную стрелу$" + }, + "4": { + "1": "^Blast Rain ยิงกระสุนเพิ่ม (\\S+) ลูก$" + }, + "5": { + "1": "^'Explosionsregen' feuert einen zusätzlichen Pfeil$" + }, + "6": { + "1": "^Pluie explosive tire une Flèche supplémentaire$" + }, + "7": { + "1": "^Lluvia de estallidos dispara una flecha adicional$" + }, + "8": { + "1": "^폭발 화살비 사용 시 화살 1개 추가 발사$" + } + } + }, "stat_1539846779": { "id": "detonate_dead_%_chance_to_detonate_additional_corpse", "negated": false, @@ -149329,6 +160651,66 @@ } } }, + "stat_122106412": { + "id": "arcane_cloak_consume_%_of_mana", + "negated": false, + "text": { + "1": { + "#": "^Arcane Cloak Spends an additional (\\S+)% of current Mana$" + }, + "2": { + "#": "^Manto Arcano Gasta um adicional de (\\S+)% da Mana atual$" + }, + "3": { + "#": "^Чародейский покров расходует дополнительно (\\S+)% от текущей маны$" + }, + "4": { + "#": "^Arcane Cloak จะใช้ มานา เพิ่มเข้าไปอีก (\\S+)% ของ มานา ที่มี$" + }, + "5": { + "#": "^'Arkaner Schutz' verbraucht zusätzlich (\\S+)% des derzeitigen Manas$" + }, + "6": { + "#": "^Cape arcanique dépense un montant supplémentaire de Mana équivalent à (\\S+)% de votre Mana actuel$" + }, + "7": { + "#": "^Manto arcano gasta un (\\S+)% adicional del maná actual$" + }, + "8": { + "#": "^비전의 망토가 현재 마나의 (\\S+)%를 추가 소모$" + } + } + }, + "stat_3606492882": { + "id": "arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second", + "negated": false, + "text": { + "1": { + "#": "^Arcane Cloak grants Life Regeneration equal to (\\S+)% of Mana Spent per Second$" + }, + "2": { + "#": "^Manto Arcano concede Regeneração de Vida igual a (\\S+)% da Mana Gasta por Segundo$" + }, + "3": { + "#": "^Чародейский покров дарует регенерацию здоровья в секунду в размере (\\S+)% от затраченной маны$" + }, + "4": { + "#": "^Arcane Cloak จะมอบ ฟื้นฟูพลังชีวิต เท่ากับ (\\S+)% ของปริมาณ มานา ที่เสียไปในการใช้สกิล$" + }, + "5": { + "#": "^'Arkaner Schutz' gewährt Lebensregeneration in Höhe von (\\S+)% des verbrauchten Manas pro Sekunde$" + }, + "6": { + "#": "^Cape arcanique octroie une Régénération de Vie par seconde équivalente à (\\S+)% du Mana dépensé$" + }, + "7": { + "#": "^Manto arcano otorga regeneración de vida igual al (\\S+)% del maná gastado por segundo$" + }, + "8": { + "#": "^비전의 망토가 1초마다 사용한 마나의 (\\S+)%와 동일한 생명력 재생 부여$" + } + } + }, "stat_2781179464": { "id": "arctic_breath_chilling_area_movement_velocity_+%", "negated": false, @@ -149707,6 +161089,120 @@ } } }, + "stat_2276547155": { + "id": "blade_blase_damage_+%", + "negated": false, + "text": { + "1": { + "1|#": "^Blade Blast deals (\\S+)% increased Damage$", + "N#|-1": "^Blade Blast deals (\\S+)% reduced Damage$" + }, + "2": { + "1|#": "^Explosão de Lâminas causa Dano aumentado em (\\S+)%$", + "N#|-1": "^Explosão de Lâminas causa Dano reduzido em (\\S+)%$" + }, + "3": { + "1|#": "^(\\S+)% увеличение урона Взрыва клинков$", + "N#|-1": "^(\\S+)% уменьшение урона Взрыва клинков$" + }, + "4": { + "1|#": "^เพิ่มความเสียหายของ Blade Blast (\\S+)%$", + "N#|-1": "^ลดความเสียหายของ Blade Blast (\\S+)%$" + }, + "5": { + "1|#": "^'Klingenexplosion' verursacht (\\S+)% erhöhten Schaden$", + "N#|-1": "^'Klingenexplosion' verursacht (\\S+)% verringerten Schaden$" + }, + "6": { + "1|#": "^Explosion de lames a (\\S+)% d'Augmentation de Dégâts$", + "N#|-1": "^Explosion de lames a (\\S+)% de Réduction de Dégâts$" + }, + "7": { + "1|#": "^Explosión de filos inflige daño aumentado un (\\S+)%$", + "N#|-1": "^Explosión de filos inflige daño reducido un (\\S+)%$" + }, + "8": { + "1|#": "^칼날 폭격으로 주는 피해 (\\S+)% 증가$", + "N#|-1": "^칼날 폭격으로 주는 피해 (\\S+)% 감소$" + } + } + }, + "stat_3569393676": { + "id": "blade_blast_skill_area_of_effect_+%", + "negated": false, + "text": { + "1": { + "1|#": "^Blade Blast has (\\S+)% increased Area of Effect$", + "N#|-1": "^Blade Blast has (\\S+)% reduced Area of Effect$" + }, + "2": { + "1|#": "^Explosão de Lâminas tem Área de Efeito aumentada em (\\S+)%$", + "N#|-1": "^Explosão de Lâminas tem Área de Efeito reduzida em (\\S+)%$" + }, + "3": { + "1|#": "^(\\S+)% увеличение области действия Взрыва клинков$", + "N#|-1": "^(\\S+)% уменьшение области действия Взрыва клинков$" + }, + "4": { + "1|#": "^เพิ่มพื้นที่ส่งผลของ Blade Blast (\\S+)%$", + "N#|-1": "^ลดพื้นที่ส่งผลของ Blade Blast (\\S+)%$" + }, + "5": { + "1|#": "^'Klingenexplosion' hat (\\S+)% vergrößerten Wirkungsbereich$", + "N#|-1": "^'Klingenexplosion' hat (\\S+)% verkleinerten Wirkungsbereich$" + }, + "6": { + "1|#": "^Explosion de lames a (\\S+)% d'Augmentation de Zone d'effet$", + "N#|-1": "^Explosion de lames a (\\S+)% de Réduction de Zone d'effet$" + }, + "7": { + "1|#": "^Explosión de filos tiene su área de efecto aumentada un (\\S+)%$", + "N#|-1": "^Explosión de filos tiene su área de efecto reducida un (\\S+)%$" + }, + "8": { + "1|#": "^칼날 폭격의 효과 범위 (\\S+)% 증가$", + "N#|-1": "^칼날 폭격의 효과 범위 (\\S+)% 감소$" + } + } + }, + "stat_3309486263": { + "id": "blade_blast_trigger_detonation_area_of_effect_+%", + "negated": false, + "text": { + "1": { + "1|#": "^Blade Blast detonates other Lingering Blades within an (\\S+)% increased Area$", + "N#|-1": "^Blade Blast detonates other Lingering Blades within an (\\S+)% reduced Area$" + }, + "2": { + "1|#": "^Explosão de Lâminas detona outras Lâminas Persistentes dnetro de uma Área aumentada em (\\S+)%$", + "N#|-1": "^Explosão de Lâminas detona outras Lâminas Persistentes dnetro de uma Área reduzida em (\\S+)%$" + }, + "3": { + "1|#": "^Взрыв клинков взрывает другие остаточные клинки в увеличенной на (\\S+)% области$", + "N#|-1": "^Взрыв клинков взрывает другие остаточные клинки в уменьшенной на (\\S+)% области$" + }, + "4": { + "1|#": "^Blade Blast จะระเบิดมีดเล่มต่อไปโดยมีพื้นที่การค้นหาเพิ่มขี้น (\\S+)%$", + "N#|-1": "^Blade Blast จะระเบิดมีดเล่มต่อไปโดยมีพื้นที่การค้นหาลดขี้น (\\S+)%$" + }, + "5": { + "1|#": "^'Klingenexplosion' lässt innerhalb eines (\\S+)% vergrößerten Bereichs andere verbleibende Klingen explodieren$", + "N#|-1": "^'Klingenexplosion' lässt innerhalb eines (\\S+)% verkleinerten Bereichs andere verbleibende Klingen explodieren$" + }, + "6": { + "1|#": "^Explosion de lames fait exploser les Lames rémanentes située dans une Zone Augmentée de (\\S+)%$", + "N#|-1": "^Explosion de lames fait exploser les Lames rémanentes située dans une Zone Réduite de (\\S+)%$" + }, + "7": { + "1|#": "^Explosión de filos detona otros Filos persistentes dentro de un área aumentada un (\\S+)%$", + "N#|-1": "^Explosión de filos detona otros Filos persistentes dentro de un área reducida un (\\S+)%$" + }, + "8": { + "1|#": "^칼날 폭격이 다른 지속되는 칼날을 폭발시키는 범위 (\\S+)% 증가$", + "N#|-1": "^칼날 폭격이 다른 지속되는 칼날을 폭발시키는 범위 (\\S+)% 감소$" + } + } + }, "stat_2583039202": { "id": "blade_vortex_critical_strike_multiplier_+_per_blade", "negated": false, @@ -155907,6 +167403,82 @@ } } }, + "stat_2244239056": { + "id": "kinetic_bolt_attack_speed_+%", + "negated": false, + "text": { + "1": { + "1|#": "^Kinetic Bolt has (\\S+)% increased Attack Speed$", + "N#|-1": "^Kinetic Bolt has (\\S+)% reduced Attack Speed$" + }, + "2": { + "1|#": "^Tiro Cinético tem Velocidade de Ataque aumentada em (\\S+)%$", + "N#|-1": "^Tiro Cinético tem Velocidade de Ataque reduzida em (\\S+)%$" + }, + "3": { + "1|#": "^(\\S+)% повышение скорости атаки Кинетического заряда$", + "N#|-1": "^(\\S+)% снижение скорости атаки Кинетического заряда$" + }, + "4": { + "1|#": "^เพิ่มความเร็วในการโจมตีของ Kinetic Bolt (\\S+)%$", + "N#|-1": "^ลดความเร็วในการโจมตีของ Kinetic Bolt (\\S+)%$" + }, + "5": { + "1|#": "^'Kinetisches Geschoss' hat (\\S+)% erhöhte Angriffsgeschwindigkeit$", + "N#|-1": "^'Kinetisches Geschoss' hat (\\S+)% verringerte Angriffsgeschwindigkeit$" + }, + "6": { + "1|#": "^Éclair cinétique a (\\S+)% d'Augmentation de Vitesse d'attaque$", + "N#|-1": "^Éclair cinétique a (\\S+)% de Réduction de Vitesse d'attaque$" + }, + "7": { + "1|#": "^Descarga cinética tiene velocidad de ataque aumentada un (\\S+)%$", + "N#|-1": "^Descarga cinética tiene velocidad de ataque reducida un (\\S+)%$" + }, + "8": { + "1|#": "^역학 투사체 공격 속도 (\\S+)% 증가$", + "N#|-1": "^역학 투사체 공격 속도 (\\S+)% 감소$" + } + } + }, + "stat_2482018205": { + "id": "kinetic_bolt_projectile_speed_+%", + "negated": false, + "text": { + "1": { + "1|#": "^Kinetic Bolt has (\\S+)% increased Projectile Speed$", + "N#|-1": "^Kinetic Bolt has (\\S+)% reduced Projectile Speed$" + }, + "2": { + "1|#": "^Tiro Cinético tem Velocidade de Projétil aumentada em (\\S+)%$", + "N#|-1": "^Tiro Cinético tem Velocidade de Projétil reduzida em (\\S+)%$" + }, + "3": { + "1|#": "^(\\S+)% повышение скорости снаряда Кинетического заряда$", + "N#|-1": "^(\\S+)% снижение скорости снаряда Кинетического заряда$" + }, + "4": { + "1|#": "^เพิ่มความเร็วกระสุนของ Kinetic Bolt (\\S+)%$", + "N#|-1": "^ลดความเร็วกระสุนของ Kinetic Bolt (\\S+)%$" + }, + "5": { + "1|#": "^'Kinetisches Geschoss' hat (\\S+)% erhöhte Projektilgeschwindigkeit$", + "N#|-1": "^'Kinetisches Geschoss' hat (\\S+)% verringerte Projektilgeschwindigkeit$" + }, + "6": { + "1|#": "^Éclair cinétique a (\\S+)% d'Augmentation de Vitesse des Projectiles$", + "N#|-1": "^Éclair cinétique a (\\S+)% de Réduction de Vitesse des Projectiles$" + }, + "7": { + "1|#": "^Descarga cinética tiene velocidad de proyectiles aumentada un (\\S+)%$", + "N#|-1": "^Descarga cinética tiene velocidad de proyectiles reducida un (\\S+)%$" + }, + "8": { + "1|#": "^역학 투사체 투사체 속도 (\\S+)% 증가$", + "N#|-1": "^역학 투사체 투사체 속도 (\\S+)% 감소$" + } + } + }, "stat_2159486200": { "id": "lancing_steel_damage_+%", "negated": false, @@ -157399,6 +168971,66 @@ } } }, + "stat_2693668441": { + "id": "map_endgame_affliction_reward_1", + "negated": false, + "text": { + "1": { + "#": "^Delirium Reward Type: (\\S+)$" + }, + "2": { + "#": "^Tipo de Recompensa Delirium: (\\S+)$" + }, + "3": { + "#": "^Вид награды Делириума: (\\S+)$" + }, + "4": { + "#": "^ชนิดของรางวัลเดลิเรียม: (\\S+)$" + }, + "5": { + "#": "^Delirium-Belohnungstyp: (\\S+)$" + }, + "6": { + "#": "^Type de Récompense du Délire : (\\S+)$" + }, + "7": { + "#": "^Tipo de recompensa de Delirium: (\\S+)$" + }, + "8": { + "#": "^환영 보상 유형: (\\S+)$" + } + } + }, + "stat_1715784068": { + "id": "map_endgame_fog_depth", + "negated": false, + "text": { + "1": { + "#": "^Players in Area are (\\S+)% Delirious$" + }, + "2": { + "#": "^Jogadores na Área são (\\S+)% Delirantes$" + }, + "3": { + "#": "^Игроки в области на (\\S+)% безумны$" + }, + "4": { + "#": "^ผู้เล่นในพื้นที่จะอยู่ในภาวะคุ้มคลั่ง (\\S+)%$" + }, + "5": { + "#": "^Spieler im Gebiet sind (\\S+)% deliriös$" + }, + "6": { + "#": "^Le Délire affecte la Zone à (\\S+)%$" + }, + "7": { + "#": "^Los jugadores del área sufren un delirio del (\\S+)%$" + }, + "8": { + "#": "^해당 지역 플레이어에게 나타나는 환영의 강도 (\\S+)%$" + } + } + }, "stat_1439991839": { "id": "map_essence_monolith_contains_essence_of_corruption_%", "negated": false, @@ -159376,6 +171008,66 @@ } } }, + "stat_4059221381": { + "id": "rune_blast_teleports_to_detonated_rune_with_100_ms_cooldown", + "negated": false, + "text": { + "1": { + "#": "^Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1 second$" + }, + "2": { + "#": "^Explosão Rúnica o teleporta para a Runa detonada se você não detonou Runas no último 1 segundo$" + }, + "3": { + "#": "^Рунический взрыв телепортирует вас к взорваной руне, если вы не взрывали руны в последнюю секунду$" + }, + "4": { + "#": "^Rune Blast จะเคลื่อนย้ายตัวละครของคุณไปยังอักขระที่ถูกระเบิด หากคุณไม่ได้ทำการระเบิดอักขระมาใน 1 วินาทีที่ผ่านมา$" + }, + "5": { + "#": "^Runenexplosion teleportiert Euch zur gezündeten Rune, wenn Ihr in der letzten Sekunde keine Runen gezündet habt$" + }, + "6": { + "#": "^Explosion runique vous téléporte jusqu'à la Rune qui vient d'exploser si vous n'avez pas fait exploser de Runes durant la dernière seconde$" + }, + "7": { + "#": "^Explosión rúnica te teletransporta a la runa detonada si no has detonado ninguna runa en el último segundo$" + }, + "8": { + "#": "^최근 1초 내에 룬 문자를 폭발시키지 않았다면 룬 폭발이 자신을 폭발한 룬 문자로 순간이동$" + } + } + }, + "stat_242209782": { + "id": "rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown", + "negated": false, + "text": { + "1": { + "#": "^Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1\\.5 seconds$" + }, + "2": { + "#": "^Explosão Rúnica o teleporta para a Runa detonada se você não detonou Runas nos últimos 1\\.5 segundos$" + }, + "3": { + "#": "^Рунический взрыв телепортирует вас к взорваной руне, если не взрывали руны в последние 1\\.5 секунды$" + }, + "4": { + "#": "^Rune Blast จะเคลื่อนย้ายตัวละครของคุณไปยังอักขระที่ถูกระเบิด หากคุณไม่ได้ทำการระเบิดอักขระมาใน 1\\.5 วินาทีที่ผ่านมา$" + }, + "5": { + "#": "^Runenexplosion teleportiert Euch zur gezündeten Rune, wenn Ihr in den letzten 1\\.5 Sekunden keine Runen gezündet habt$" + }, + "6": { + "#": "^Explosion runique vous téléporte jusqu'à la Rune qui vient d'exploser si vous n'avez pas fait exploser de Runes durant les dernières 1,5 secondes$" + }, + "7": { + "#": "^Explosión rúnica te teletransporta a la runa detonada si no has detonado ninguna runa en los últimos 1,5 segundos$" + }, + "8": { + "#": "^최근 1\\.5초 내에 룬 문자를 폭발시키지 않았다면 룬 폭발이 자신을 폭발한 룬 문자로 순간이동$" + } + } + }, "stat_1954529734": { "id": "sanctify_area_of_effect_+%_when_targeting_consecrated_ground", "negated": false, @@ -160382,6 +172074,82 @@ } } }, + "stat_465162370": { + "id": "spellslinger_cooldown_duration_+%", + "negated": false, + "text": { + "1": { + "1|#": "^Skills Supported by Spellslinger have (\\S+)% increased Cooldown Recovery Speed$", + "N#|-1": "^Skills Supported by Spellslinger have (\\S+)% reduced Cooldown Recovery Speed$" + }, + "2": { + "1|#": "^Habilidades Suportadas por Feiticeiro têm Velocidade do Tempo de Recarga aumentada em (\\S+)%$", + "N#|-1": "^Habilidades Suportadas por Feiticeiro têm Velocidade do Tempo de Recarga reduzida em (\\S+)%$" + }, + "3": { + "1|#": "^Усиленные Чароплетом умения имеют (\\S+)% повышение скорости перезарядки$", + "N#|-1": "^Усиленные Чароплетом умения имеют (\\S+)% снижение скорости перезарядки$" + }, + "4": { + "1|#": "^สกิลที่ถูกเสริมด้วย Spellslinger จะเพิ่มความเร็วในการฟื้นฟูคูลดาวน์ (\\S+)%$", + "N#|-1": "^สกิลที่ถูกเสริมด้วย Spellslinger จะลดความเร็วในการฟื้นฟูคูลดาวน์ (\\S+)%$" + }, + "5": { + "1|#": "^Fertigkeiten, die durch 'Zauberschwinger' unterstützt werden, haben (\\S+)% beschleunigte Abklingzeit$", + "N#|-1": "^Fertigkeiten, die durch 'Zauberschwinger' unterstützt werden, haben (\\S+)% verlangsamte Abklingzeit$" + }, + "6": { + "1|#": "^Les Aptitudes modifiées par Projection de sortilèges ont (\\S+)% d'Augmentation de Vitesse de recharge$", + "N#|-1": "^Les Aptitudes modifiées par Projection de sortilèges ont (\\S+)% de Réduction de Vitesse de recharge$" + }, + "7": { + "1|#": "^Las habilidades asistidas por Lanzahechizos tienen velocidad de recuperación del tiempo de recarga aumentada un (\\S+)%$", + "N#|-1": "^Las habilidades asistidas por Lanzahechizos tienen velocidad de recuperación del tiempo de recarga reducida un (\\S+)%$" + }, + "8": { + "1|#": "^주문투척 보조 효과가 적용되는 스킬의 재사용 대기시간 회복 속도 (\\S+)% 증가$", + "N#|-1": "^주문투척 보조 효과가 적용되는 스킬의 재사용 대기시간 회복 속도 (\\S+)% 감소$" + } + } + }, + "stat_2561956001": { + "id": "spellslinger_mana_reservation_+%", + "negated": false, + "text": { + "1": { + "1|#": "^Skills Supported by Spellslinger have (\\S+)% increased Mana Reservation$", + "N#|-1": "^Skills Supported by Spellslinger have (\\S+)% reduced Mana Reservation$" + }, + "2": { + "1|#": "^Habilidades Suportadas por Feiticeiro têm Reserva de Mana aumentada em (\\S+)%$", + "N#|-1": "^Habilidades Suportadas por Feiticeiro têm Reserva de Mana reduzida em (\\S+)%$" + }, + "3": { + "1|#": "^Усиленные Чароплетом умения имеют (\\S+)% увеличение количества удержанной маны$", + "N#|-1": "^Усиленные Чароплетом умения имеют (\\S+)% уменьшение количества удержанной маны$" + }, + "4": { + "1|#": "^สกิลที่ถูกเสริมด้วย Spellslinger จะเพิ่มมานาสำรอง (\\S+)%$", + "N#|-1": "^สกิลที่ถูกเสริมด้วย Spellslinger จะลดมานาสำรอง (\\S+)%$" + }, + "5": { + "1|#": "^Fertigkeiten, die durch 'Zauberschwinger' unterstützt werden, haben (\\S+)% erhöhte Manareservierung$", + "N#|-1": "^Fertigkeiten, die durch 'Zauberschwinger' unterstützt werden, haben (\\S+)% verringerte Manareservierung$" + }, + "6": { + "1|#": "^(\\S+)% d'Augmentation du Mana Réservé par les Aptitudes modifiées par Projection de sortilèges$", + "N#|-1": "^(\\S+)% de Réduction du Mana Réservé par les Aptitudes modifiées par Projection de sortilèges$" + }, + "7": { + "1|#": "^Las habilidades asistidas por Lanzahechizos tienen su reserva de maná aumentada un (\\S+)%$", + "N#|-1": "^Las habilidades asistidas por Lanzahechizos tienen su reserva de maná reducida un (\\S+)%$" + }, + "8": { + "1|#": "^주문투척 보조 효과가 적용되는 스킬의 마나 점유 (\\S+)% 증가$", + "N#|-1": "^주문투척 보조 효과가 적용되는 스킬의 마나 점유 (\\S+)% 감소$" + } + } + }, "stat_2537202749": { "id": "static_strike_additional_number_of_beam_targets", "negated": false, @@ -160676,6 +172444,82 @@ } } }, + "stat_3823033989": { + "id": "stormbind_skill_area_of_effect_+%", + "negated": false, + "text": { + "1": { + "1|#": "^Stormbind has (\\S+)% increased Area of Effect$", + "N#|-1": "^Stormbind has (\\S+)% reduced Area of Effect$" + }, + "2": { + "1|#": "^Vínculo Tempestuoso tem Área de Efeito aumentada em (\\S+)%$", + "N#|-1": "^Vínculo Tempestuoso tem Área de Efeito reduzida em (\\S+)%$" + }, + "3": { + "1|#": "^(\\S+)% увеличение области действия Электрического поля$", + "N#|-1": "^(\\S+)% уменьшение области действия Электрического поля$" + }, + "4": { + "1|#": "^เพิ่มพื้นที่ส่งผลของ Stormbind (\\S+)%$", + "N#|-1": "^ลดพื้นที่ส่งผลของ Stormbind (\\S+)%$" + }, + "5": { + "1|#": "^'Sturmrune' hat (\\S+)% vergrößerten Wirkungsbereich$", + "N#|-1": "^'Sturmrune' hat (\\S+)% verkleinerten Wirkungsbereich$" + }, + "6": { + "1|#": "^Rune de l'orage a (\\S+)% d'Augmentation de Zone d'effet$", + "N#|-1": "^Rune de l'orage a (\\S+)% de Réduction de Zone d'effet$" + }, + "7": { + "1|#": "^Rito de tormenta tiene su área de efecto aumentada un (\\S+)%$", + "N#|-1": "^Rito de tormenta tiene su área de efecto reducida un (\\S+)%$" + }, + "8": { + "1|#": "^폭풍 연대의 효과 범위 (\\S+)% 증가$", + "N#|-1": "^폭풍 연대의 효과 범위 (\\S+)% 감소$" + } + } + }, + "stat_1235531589": { + "id": "stormbind_skill_damage_+%", + "negated": false, + "text": { + "1": { + "1|#": "^Stormbind deals (\\S+)% increased Damage$", + "N#|-1": "^Stormbind deals (\\S+)% reduced Damage$" + }, + "2": { + "1|#": "^Vínculo Tempestuoso causa Dano aumentado em (\\S+)%$", + "N#|-1": "^Vínculo Tempestuoso causa Dano reduzido em (\\S+)%$" + }, + "3": { + "1|#": "^(\\S+)% увеличение урона Электрического поля$", + "N#|-1": "^(\\S+)% уменьшение урона Электрического поля$" + }, + "4": { + "1|#": "^เพิ่มความเสียหายของ Stormbind (\\S+)%$", + "N#|-1": "^ลดความเสียหายของ Stormbind (\\S+)%$" + }, + "5": { + "1|#": "^'Sturmrune' verursacht (\\S+)% erhöhten Schaden$", + "N#|-1": "^'Sturmrune' verursacht (\\S+)% verringerten Schaden$" + }, + "6": { + "1|#": "^Rune de l'orage a (\\S+)% d'Augmentation de Dégâts$", + "N#|-1": "^Rune de l'orage a (\\S+)% de Réduction de Dégâts$" + }, + "7": { + "1|#": "^Rito de tormenta inflige daño aumentado un (\\S+)%$", + "N#|-1": "^Rito de tormenta inflige daño reducido un (\\S+)%$" + }, + "8": { + "1|#": "^폭풍 연대로 주는 피해 (\\S+)% 증가$", + "N#|-1": "^폭풍 연대로 주는 피해 (\\S+)% 감소$" + } + } + }, "stat_634375806": { "id": "summon_skeletons_additional_warrior_skeleton_one_twentieth_chance", "negated": false, @@ -161862,6 +173706,36 @@ } } }, + "stat_3086156145": { + "id": "local_jewel_expansion_passive_node_count", + "negated": false, + "text": { + "1": { + "#": "^Adds (\\S+) Passive Skills$" + }, + "2": { + "#": "^Adiciona (\\S+)1 Habilidades Passivas$" + }, + "3": { + "#": "^Добавляет пассивных умений: (\\S+)$" + }, + "4": { + "#": "^เพิ่มพาสซีพ (\\S+) จุด$" + }, + "5": { + "#": "^Fügt (\\S+) passive Fertigkeiten hinzu$" + }, + "6": { + "#": "^Ajoute (\\S+) Talents passifs$" + }, + "7": { + "#": "^Agrega (\\S+) habilidades pasivas$" + }, + "8": { + "#": "^패시브 스킬 (\\S+)개 추가$" + } + } + }, "stat_2420972973": { "id": "base_bone_golem_granted_buff_effect_+%", "negated": false, @@ -162020,6 +173894,36 @@ } } }, + "stat_1460506005": { + "id": "kinetic_wand_base_number_of_zig_zags", + "negated": false, + "text": { + "1": { + "1": "^Kinetic Bolt changes direction (\\S+) additional time$" + }, + "2": { + "1": "^Tiro Cinético muda de direção (\\S+) vez adicional$" + }, + "3": { + "1": "^Кинетический заряд меняет направление дополнительно (\\S+) раз$" + }, + "4": { + "1": "^Kinetic Bolt เปลี่ยนทิศทางเพิ่มอีก (\\S+) ครั้ง$" + }, + "5": { + "1": "^'Kinetisches Geschoss' verändert die Richtung (\\S+) zusätzliches Mal$" + }, + "6": { + "1": "^Éclair cinétique change de direction (\\S+) fois supplémentaire$" + }, + "7": { + "1": "^Descarga cinética cambia de dirección (\\S+) vez adicional$" + }, + "8": { + "1": "^역학 투사체 방향 전환 (\\S+)회 추가$" + } + } + }, "stat_3034788766": { "id": "volatile_dead_base_number_of_corpses_to_consume", "negated": false,