From f9530e82f840652aae8142ec09af3bd47ae8cae2 Mon Sep 17 00:00:00 2001 From: Daniel Klingmann Date: Thu, 28 Jul 2022 17:27:20 +0200 Subject: [PATCH] fix: update data files and build script There was an issue in the data script regarding skill indirections. This was fixed and an update to the data files has been made. Fixes #24 --- bin/build-data-file.js | 4 +- package-lock.json | 82 +++++++++++++++++++++++++++--- package.json | 2 + src/assets/actionindirections.json | 2 +- src/assets/classjobactions.json | 2 +- src/assets/classjobs.json | 2 +- 6 files changed, 81 insertions(+), 13 deletions(-) diff --git a/bin/build-data-file.js b/bin/build-data-file.js index 9dba3d0..79aaee0 100644 --- a/bin/build-data-file.js +++ b/bin/build-data-file.js @@ -31,9 +31,9 @@ class XIVApi { actionIds = [ ...actionIds, ...job.GameContentLinks.ActionIndirection.ClassJob.map((id) => { - return actionIndirections[ id ].Name.ID; + return actionIndirections[ id ]?.Name?.ID || null; }) - ] + ].filter((id) => id !== null) } const filters = [ diff --git a/package-lock.json b/package-lock.json index 1c1f4f8..5c48253 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,12 @@ { "name": "xiv-rotation-hero-angular", - "version": "0.2.0", + "version": "0.4.0", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "0.2.0", + "name": "xiv-rotation-hero-angular", + "version": "0.4.0", "dependencies": { "@angular/animations": "~12.1.0-", "@angular/common": "~12.1.0-", @@ -32,6 +33,8 @@ "@popperjs/core": "^2.9.3", "@types/jasmine": "~3.8.0", "@types/node": "^12.11.1", + "axios": "^0.27.2", + "axios-rate-limit": "^1.3.0", "jasmine-core": "~3.8.0", "karma": "~6.3.0", "karma-chrome-launcher": "~3.1.0", @@ -3139,6 +3142,39 @@ "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", "dev": true }, + "node_modules/axios": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", + "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", + "dev": true, + "dependencies": { + "follow-redirects": "^1.14.9", + "form-data": "^4.0.0" + } + }, + "node_modules/axios-rate-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/axios-rate-limit/-/axios-rate-limit-1.3.0.tgz", + "integrity": "sha512-cKR5wTbU/CeeyF1xVl5hl6FlYsmzDVqxlN4rGtfO5x7J83UxKDckudsW0yW21/ZJRcO0Qrfm3fUFbhEbWTLayw==", + "dev": true, + "peerDependencies": { + "axios": "*" + } + }, + "node_modules/axios/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/babel-loader": { "version": "8.2.2", "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz", @@ -6151,9 +6187,9 @@ "dev": true }, "node_modules/follow-redirects": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.1.tgz", - "integrity": "sha512-HWqDgT7ZEkqRzBvc2s64vSZ/hfOceEol3ac/7tKwzuvEyWx3/4UegXh5oBOIotkGsObyk3xznnSRVADBgWSQVg==", + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz", + "integrity": "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==", "dev": true, "funding": [ { @@ -18553,6 +18589,36 @@ "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", "dev": true }, + "axios": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", + "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", + "dev": true, + "requires": { + "follow-redirects": "^1.14.9", + "form-data": "^4.0.0" + }, + "dependencies": { + "form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + } + } + }, + "axios-rate-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/axios-rate-limit/-/axios-rate-limit-1.3.0.tgz", + "integrity": "sha512-cKR5wTbU/CeeyF1xVl5hl6FlYsmzDVqxlN4rGtfO5x7J83UxKDckudsW0yW21/ZJRcO0Qrfm3fUFbhEbWTLayw==", + "dev": true, + "requires": {} + }, "babel-loader": { "version": "8.2.2", "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz", @@ -20928,9 +20994,9 @@ "dev": true }, "follow-redirects": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.1.tgz", - "integrity": "sha512-HWqDgT7ZEkqRzBvc2s64vSZ/hfOceEol3ac/7tKwzuvEyWx3/4UegXh5oBOIotkGsObyk3xznnSRVADBgWSQVg==", + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz", + "integrity": "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==", "dev": true }, "for-in": { diff --git a/package.json b/package.json index 13838d3..1592912 100644 --- a/package.json +++ b/package.json @@ -37,6 +37,8 @@ "@popperjs/core": "^2.9.3", "@types/jasmine": "~3.8.0", "@types/node": "^12.11.1", + "axios": "^0.27.2", + "axios-rate-limit": "^1.3.0", "jasmine-core": "~3.8.0", "karma": "~6.3.0", "karma-chrome-launcher": "~3.1.0", diff --git a/src/assets/actionindirections.json b/src/assets/actionindirections.json index 14ef863..a3227bb 100644 --- a/src/assets/actionindirections.json +++ b/src/assets/actionindirections.json @@ -1 +1 @@ -{"1":{"ID":1,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":560,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/dgr_ninja/syuriken","Key_en":"magic/dgr_ninja/syuriken","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":2,"Type":0,"WeaponTimeline":{"File":"weapon/normal_idle","File_en":"weapon/normal_idle","ID":2,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":2},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":560,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":30,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":2265,"Icon":"/i/002000/002907.png","IconHD":"/i/002000/002907_hr1.png","IconID":2907,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Fuma Shuriken","Name_de":"Fuma Shuriken","Name_en":"Fuma Shuriken","Name_fr":"Fûma Shuriken","Name_ja":"風魔手裏剣","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":25,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":65748,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/1"},"2":{"ID":2,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":561,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/dgr_ninja/katon","Key_en":"magic/dgr_ninja/katon","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":561,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":1,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":35,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":2266,"Icon":"/i/002000/002908.png","IconHD":"/i/002000/002908_hr1.png","IconID":2908,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Katon","Name_de":"Katon","Name_en":"Katon","Name_fr":"Katon","Name_ja":"火遁の術","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":15,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":65750,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/2"},"3":{"ID":3,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":562,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/dgr_ninja/raiton","Key_en":"magic/dgr_ninja/raiton","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":562,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":5,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":35,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":2267,"Icon":"/i/002000/002912.png","IconHD":"/i/002000/002912_hr1.png","IconID":2912,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Raiton","Name_de":"Raiton","Name_en":"Raiton","Name_fr":"Raiton","Name_ja":"雷遁の術","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":15,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":65750,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/3"},"4":{"ID":4,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":566,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/dgr_ninja/hyoton","Key_en":"magic/dgr_ninja/hyoton","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":566,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":2,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":45,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":2268,"Icon":"/i/002000/002909.png","IconHD":"/i/002000/002909_hr1.png","IconID":2909,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Hyoton","Name_de":"Hyoton","Name_en":"Hyoton","Name_fr":"Hyôton","Name_ja":"氷遁の術","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":25,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":65768,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/4"},"5":{"ID":5,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":563,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/dgr_ninja/fuuton","Key_en":"magic/dgr_ninja/fuuton","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":563,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":45,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":2269,"Icon":"/i/002000/002910.png","IconHD":"/i/002000/002910_hr1.png","IconID":2910,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Huton","Name_de":"Huton","Name_en":"Huton","Name_fr":"Fûton","Name_ja":"風遁の術","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":0,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":65768,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/5"},"6":{"ID":6,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":564,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/dgr_ninja/doton","Key_en":"magic/dgr_ninja/doton","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":564,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":4,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":7,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":45,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":2270,"Icon":"/i/002000/002911.png","IconHD":"/i/002000/002911_hr1.png","IconID":2911,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Doton","Name_de":"Doton","Name_en":"Doton","Name_fr":"Doton","Name_ja":"土遁の術","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":0,"Recast100ms":15,"SecondaryCostType":33,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":65768,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/6"},"7":{"ID":7,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":565,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/dgr_ninja/suiton","Key_en":"magic/dgr_ninja/suiton","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":565,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":6,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":45,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":2271,"Icon":"/i/002000/002913.png","IconHD":"/i/002000/002913_hr1.png","IconID":2913,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Suiton","Name_de":"Suiton","Name_en":"Suiton","Name_fr":"Suiton","Name_ja":"水遁の術","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":15,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":65768,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/7"},"8":{"ID":8,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3974,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/clw_monk/abl018","Key_en":"ability/clw_monk/abl018","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3974,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":21,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":1,"MRD":0,"NIN":0,"Name":"MNK","Name_de":"MÖN","Name_en":"MNK","Name_fr":"MOI","Name_ja":"モンク","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":21,"ClassJobLevel":54,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":1,"EffectRange":0,"ID":3547,"Icon":"/i/002000/002535.png","IconHD":"/i/002000/002535_hr1.png","IconID":2535,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"the Forbidden Chakra","Name_de":"Verbotenes Chakra","Name_en":"the Forbidden Chakra","Name_fr":"Chakra interdit","Name_ja":"陰陽闘気斬","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":28,"PrimaryCostValue":5,"Range":"-1","Recast100ms":10,"SecondaryCostType":42,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":67564,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/8"},"9":{"ID":9,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":4021,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gl_astro/play01_hit","Key_en":"ability/2gl_astro/play01_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":4021,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3851,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gl_astro/play01","Key_en":"ability/2gl_astro/play01","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3851,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":1,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":1,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":99,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"AST","Name_de":"AST","Name_en":"AST","Name_fr":"AST","Name_ja":"占星術師","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":99,"ClassJobLevel":30,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":12,"EffectRange":0,"ID":4401,"Icon":"/i/003000/003110.png","IconHD":"/i/003000/003110_hr1.png","IconID":3110,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"the Balance","Name_de":"Waage","Name_en":"the Balance","Name_fr":"La Balance","Name_ja":"アーゼマの均衡","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":33,"PrimaryCostValue":1,"Range":30,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/9"},"10":{"ID":10,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":4023,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gl_astro/play03_hit","Key_en":"ability/2gl_astro/play03_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":4023,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3878,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gl_astro/play03","Key_en":"ability/2gl_astro/play03","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3878,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":1,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":1,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":99,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"AST","Name_de":"AST","Name_en":"AST","Name_fr":"AST","Name_ja":"占星術師","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":99,"ClassJobLevel":30,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":12,"EffectRange":0,"ID":4402,"Icon":"/i/003000/003112.png","IconHD":"/i/003000/003112_hr1.png","IconID":3112,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"the Arrow","Name_de":"Pfeil","Name_en":"the Arrow","Name_fr":"La Flèche","Name_ja":"オシュオンの矢","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":33,"PrimaryCostValue":3,"Range":30,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/10"},"11":{"ID":11,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":4024,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gl_astro/play04_hit","Key_en":"ability/2gl_astro/play04_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":4024,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3880,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gl_astro/play04","Key_en":"ability/2gl_astro/play04","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3880,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":1,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":1,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":99,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"AST","Name_de":"AST","Name_en":"AST","Name_fr":"AST","Name_ja":"占星術師","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":99,"ClassJobLevel":30,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":12,"EffectRange":0,"ID":4403,"Icon":"/i/003000/003113.png","IconHD":"/i/003000/003113_hr1.png","IconID":3113,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"the Spear","Name_de":"Speer","Name_en":"the Spear","Name_fr":"L'Épieu","Name_ja":"ハルオーネの槍","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":33,"PrimaryCostValue":4,"Range":30,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/11"},"12":{"ID":12,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":4022,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gl_astro/play02_hit","Key_en":"ability/2gl_astro/play02_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":4022,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3877,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gl_astro/play02","Key_en":"ability/2gl_astro/play02","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3877,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":1,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":1,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":99,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"AST","Name_de":"AST","Name_en":"AST","Name_fr":"AST","Name_ja":"占星術師","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":99,"ClassJobLevel":30,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":12,"EffectRange":0,"ID":4404,"Icon":"/i/003000/003111.png","IconHD":"/i/003000/003111_hr1.png","IconID":3111,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"the Bole","Name_de":"Eiche","Name_en":"the Bole","Name_fr":"Le Tronc","Name_ja":"世界樹の幹","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":33,"PrimaryCostValue":2,"Range":30,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/12"},"13":{"ID":13,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":4025,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gl_astro/play05_hit","Key_en":"ability/2gl_astro/play05_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":4025,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3881,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gl_astro/play05","Key_en":"ability/2gl_astro/play05","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3881,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":1,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":1,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":99,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"AST","Name_de":"AST","Name_en":"AST","Name_fr":"AST","Name_ja":"占星術師","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":99,"ClassJobLevel":30,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":12,"EffectRange":0,"ID":4405,"Icon":"/i/003000/003114.png","IconHD":"/i/003000/003114_hr1.png","IconID":3114,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"the Ewer","Name_de":"Krug","Name_en":"the Ewer","Name_fr":"L'Aiguière","Name_ja":"サリャクの水瓶","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":33,"PrimaryCostValue":5,"Range":30,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/13"},"14":{"ID":14,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":4026,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gl_astro/play06_hit","Key_en":"ability/2gl_astro/play06_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":4026,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3882,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gl_astro/play06","Key_en":"ability/2gl_astro/play06","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3882,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":1,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":1,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":99,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"AST","Name_de":"AST","Name_en":"AST","Name_fr":"AST","Name_ja":"占星術師","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":99,"ClassJobLevel":30,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":12,"EffectRange":0,"ID":4406,"Icon":"/i/003000/003115.png","IconHD":"/i/003000/003115_hr1.png","IconID":3115,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"the Spire","Name_de":"Turm","Name_en":"the Spire","Name_fr":"La Tour","Name_ja":"ビエルゴの塔","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":33,"PrimaryCostValue":6,"Range":30,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/14"},"15":{"ID":15,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":5267,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gl_astro/play07_hit","Key_en":"ability/2gl_astro/play07_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":5267,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5265,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gl_astro/play07","Key_en":"ability/2gl_astro/play07","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5265,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":1,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":1,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":99,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"AST","Name_de":"AST","Name_en":"AST","Name_fr":"AST","Name_ja":"占星術師","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":99,"ClassJobLevel":50,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":12,"EffectRange":0,"ID":7444,"Icon":"/i/003000/003147.png","IconHD":"/i/003000/003147_hr1.png","IconID":3147,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Lord of Crowns","Name_de":"König der Kronen","Name_en":"Lord of Crowns","Name_fr":"Roi des couronnes","Name_ja":"クラウンロード","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":33,"PrimaryCostValue":7,"Range":30,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/15"},"16":{"ID":16,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":5268,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gl_astro/play08_hit","Key_en":"ability/2gl_astro/play08_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":5268,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5266,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gl_astro/play08","Key_en":"ability/2gl_astro/play08","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5266,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":1,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":1,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":99,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"AST","Name_de":"AST","Name_en":"AST","Name_fr":"AST","Name_ja":"占星術師","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":99,"ClassJobLevel":50,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":12,"EffectRange":0,"ID":7445,"Icon":"/i/003000/003146.png","IconHD":"/i/003000/003146_hr1.png","IconID":3146,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Lady of Crowns","Name_de":"Königin der Kronen","Name_en":"Lady of Crowns","Name_fr":"Reine des couronnes","Name_ja":"クラウンレディ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":33,"PrimaryCostValue":8,"Range":30,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/16"},"17":{"ID":17,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":24,"Status":{"CanDispel":0,"Category":1,"Description":"Able to cast F201F4F201F5Ruin IV0101.","Description_de":"Kann Ruinka ausführen.","Description_en":"Able to cast F201F4F201F5Ruin IV0101.","Description_fr":"Giga Ruine peut être lancé.","Description_ja":"ルインジャを実行できる状態。","HitEffect":16,"ID":1212,"Icon":"/i/019000/019481.png","IconHD":"/i/019000/019481_hr1.png","IconID":19481,"InflictedByActor":1,"Invisibility":0,"IsFcBuff":0,"IsPermanent":1,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":4,"Name":"Further Ruin","Name_de":"Verbessertes Ruinra","Name_en":"Further Ruin","Name_fr":"Extra Ruine renforcée","Name_ja":"ルインラ強化","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":1212},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":24,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5246,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/swl_summon/mgc005","Key_en":"magic/swl_summon/mgc005","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5246,"AnimationStart":{"ID":38,"Name":{"ActionTimelineIDMode":0,"ID":104,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sum_start","Key_en":"battle/magic_sum_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":104,"VFX":{"ID":103,"Location":"cmsm_castx0s","Location_en":"cmsm_castx0s"},"VFXTarget":"VFX","VFXTargetID":103},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":38,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":62,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":7426,"Icon":"/i/002000/002686.png","IconHD":"/i/002000/002686_hr1.png","IconID":2686,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Ruin IV","Name_de":"Ruinka","Name_en":"Ruin IV","Name_fr":"Giga Ruine","Name_ja":"ルインジャ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1212,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":3,"VFX":{"ID":85,"Location":"cmat_ligct0c","Location_en":"cmat_ligct0c"},"VFXTarget":"VFX","VFXTargetID":85},"VFXTarget":"ActionCastVFX","VFXTargetID":3,"XAxisModifier":0},"Url":"/ActionIndirection/17"},"18":{"ID":18,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":3270,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp030_hit","Key_en":"mon_sp/[SKL_ID]/mon_sp030_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":3270,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3230,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp030","Key_en":"mon_sp/[SKL_ID]/mon_sp030","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3230,"AnimationStart":{"ID":8,"Name":{"ActionTimelineIDMode":0,"ID":130,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"battle/mon_sp_a_start","Key_en":"battle/mon_sp_a_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":2,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":130,"VFX":null,"VFXTarget":"VFX","VFXTargetID":0},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":8,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":64,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":0,"EffectRange":15,"ID":7450,"Icon":"/i/002000/002688.png","IconHD":"/i/002000/002688_hr1.png","IconID":2688,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Devotion","Name_de":"Hingabe","Name_en":"Devotion","Name_fr":"Dévouement","Name_ja":"エギの加護","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":3,"VFX":{"ID":85,"Location":"cmat_ligct0c","Location_en":"cmat_ligct0c"},"VFXTarget":"VFX","VFXTargetID":85},"VFXTarget":"ActionCastVFX","VFXTargetID":3,"XAxisModifier":0},"Url":"/ActionIndirection/18"},"19":{"ID":19,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3201,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp001","Key_en":"mon_sp/[SKL_ID]/mon_sp001","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3201,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":0,"EffectRange":0,"ID":7428,"Icon":"/i/002000/002692.png","IconHD":"/i/002000/002692_hr1.png","IconID":2692,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Wyrmwave","Name_de":"Drachenwelle","Name_en":"Wyrmwave","Name_fr":"Onde draconique","Name_ja":"ウィルムウェーブ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":100,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68165,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/19"},"20":{"ID":20,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":3242,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp002_hit","Key_en":"mon_sp/[SKL_ID]/mon_sp002_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":3242,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3202,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp002","Key_en":"mon_sp/[SKL_ID]/mon_sp002","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3202,"AnimationStart":{"ID":8,"Name":{"ActionTimelineIDMode":0,"ID":130,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"battle/mon_sp_a_start","Key_en":"battle/mon_sp_a_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":2,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":130,"VFX":null,"VFXTarget":"VFX","VFXTargetID":0},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":8,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":0,"EffectRange":5,"ID":7449,"Icon":"/i/002000/002694.png","IconHD":"/i/002000/002694_hr1.png","IconID":2694,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Akh Morn","Name_de":"Akh Morn","Name_en":"Akh Morn","Name_fr":"Akh Morn","Name_ja":"アク・モーン","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":100,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68165,"VFX":{"ID":9,"VFX":{"ID":81,"Location":"cmat_wndct0c","Location_en":"cmat_wndct0c"},"VFXTarget":"VFX","VFXTargetID":81},"VFXTarget":"ActionCastVFX","VFXTargetID":9,"XAxisModifier":0},"Url":"/ActionIndirection/20"},"21":{"ID":21,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5120,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2kt_samrai/mgc003","Key_en":"magic/2kt_samrai/mgc003","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":6,"Type":0,"WeaponTimeline":{"File":"weapon/normal_idle","File_en":"weapon/normal_idle","ID":2,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":2},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5120,"AnimationStart":{"ID":43,"Name":{"ActionTimelineIDMode":0,"ID":5116,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sam_start","Key_en":"battle/magic_sam_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":5116,"VFX":null,"VFXTarget":"VFX","VFXTargetID":0},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":43,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":18,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":111,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SAM","Name_de":"SAM","Name_en":"SAM","Name_fr":"SAM","Name_ja":"侍","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":1,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":111,"ClassJobLevel":30,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":7489,"Icon":"/i/003000/003160.png","IconHD":"/i/003000/003160_hr1.png","IconID":3160,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Higanbana","Name_de":"Higanbana","Name_en":"Higanbana","Name_fr":"Higanbana","Name_ja":"彼岸花","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":40,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":72,"SecondaryCostValue":1,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":40,"VFX":{"ID":138,"Location":"cmsa_castx0t","Location_en":"cmsa_castx0t"},"VFXTarget":"VFX","VFXTargetID":138},"VFXTarget":"ActionCastVFX","VFXTargetID":40,"XAxisModifier":0},"Url":"/ActionIndirection/21"},"22":{"ID":22,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":5274,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2kt_samrai/mgc002_hit","Key_en":"magic/2kt_samrai/mgc002_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":5274,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5119,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2kt_samrai/mgc002","Key_en":"magic/2kt_samrai/mgc002","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/normal_idle","File_en":"weapon/normal_idle","ID":2,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":2},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5119,"AnimationStart":{"ID":43,"Name":{"ActionTimelineIDMode":0,"ID":5116,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sam_start","Key_en":"battle/magic_sam_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":5116,"VFX":null,"VFXTarget":"VFX","VFXTargetID":0},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":43,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":18,"CastType":3,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":111,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SAM","Name_de":"SAM","Name_en":"SAM","Name_fr":"SAM","Name_ja":"侍","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":1,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":111,"ClassJobLevel":40,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":8,"ID":7488,"Icon":"/i/003000/003161.png","IconHD":"/i/003000/003161_hr1.png","IconID":3161,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Tenka Goken","Name_de":"Tenka Goken","Name_en":"Tenka Goken","Name_fr":"Tenka Goken","Name_ja":"天下五剣","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":40,"PrimaryCostValue":0,"Range":8,"Recast100ms":25,"SecondaryCostType":72,"SecondaryCostValue":2,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":40,"VFX":{"ID":138,"Location":"cmsa_castx0t","Location_en":"cmsa_castx0t"},"VFXTarget":"VFX","VFXTargetID":138},"VFXTarget":"ActionCastVFX","VFXTargetID":40,"XAxisModifier":0},"Url":"/ActionIndirection/22"},"23":{"ID":23,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5118,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2kt_samrai/mgc001","Key_en":"magic/2kt_samrai/mgc001","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/normal_idle","File_en":"weapon/normal_idle","ID":2,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":2},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5118,"AnimationStart":{"ID":43,"Name":{"ActionTimelineIDMode":0,"ID":5116,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sam_start","Key_en":"battle/magic_sam_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":5116,"VFX":null,"VFXTarget":"VFX","VFXTargetID":0},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":43,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":18,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":111,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SAM","Name_de":"SAM","Name_en":"SAM","Name_fr":"SAM","Name_ja":"侍","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":1,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":111,"ClassJobLevel":50,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":7487,"Icon":"/i/003000/003162.png","IconHD":"/i/003000/003162_hr1.png","IconID":3162,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Midare Setsugekka","Name_de":"Midare Setsugekka","Name_en":"Midare Setsugekka","Name_fr":"Midare Setsugekka","Name_ja":"乱れ雪月花","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":40,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":72,"SecondaryCostValue":3,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":48,"VFX":{"ID":515,"Location":"mgc_2kt001c1t","Location_en":"mgc_2kt001c1t"},"VFXTarget":"VFX","VFXTargetID":515},"VFXTarget":"ActionCastVFX","VFXTargetID":48,"XAxisModifier":0},"Url":"/ActionIndirection/23"},"24":{"ID":24,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5259,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/m7001/mon_sp010","Key_en":"mon_sp/m7001/mon_sp010","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5259,"AnimationStart":{"ID":8,"Name":{"ActionTimelineIDMode":0,"ID":130,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"battle/mon_sp_a_start","Key_en":"battle/mon_sp_a_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":2,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":130,"VFX":null,"VFXTarget":"VFX","VFXTargetID":0},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":8,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":1,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":29,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SCH","Name_de":"GLT","Name_en":"SCH","Name_fr":"ÉRU","Name_ja":"学者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":1,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":29,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":0,"EffectRange":0,"ID":7438,"Icon":"/i/002000/002818.png","IconHD":"/i/002000/002818_hr1.png","IconID":2818,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Fey Union","Name_de":"Feenbund","Name_en":"Fey Union","Name_fr":"Union féerique","Name_ja":"フェイユニオン","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68463,"VFX":{"ID":10,"VFX":{"ID":89,"Location":"cmrv_ligct0c","Location_en":"cmrv_ligct0c"},"VFXTarget":"VFX","VFXTargetID":89},"VFXTarget":"ActionCastVFX","VFXTargetID":10,"XAxisModifier":0},"Url":"/ActionIndirection/24"},"25":{"ID":25,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":5208,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2sp_dragoon/abl018_hit","Key_en":"ability/2sp_dragoon/abl018_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":5208,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5207,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2sp_dragoon/abl018","Key_en":"ability/2sp_dragoon/abl018","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5207,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":4,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":1,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":23,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DRG","Name_de":"DRG","Name_en":"DRG","Name_fr":"DRG","Name_ja":"竜騎士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":23,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":3,"EffectRange":15,"ID":7400,"Icon":"/i/002000/002589.png","IconHD":"/i/002000/002589_hr1.png","IconID":2589,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Nastrond","Name_de":"Nastrond","Name_en":"Nastrond","Name_fr":"Naströnd","Name_ja":"ナーストレンド","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":100,"SecondaryCostType":76,"SecondaryCostValue":2,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68450,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":4},"Url":"/ActionIndirection/25"},"26":{"ID":26,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":4573,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/hide/mon_sp001","Key_en":"mon_sp/[SKL_ID]/hide/mon_sp001","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":4573,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":2,"Name":"突","Name_de":"突","Name_en":"突","Name_fr":"perforant","Name_ja":"突"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":2,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":96,"LNC":0,"LTW":0,"MCH":1,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"MCH","Name_de":"MCH","Name_en":"MCH","Name_fr":"MCH","Name_ja":"機工士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":96,"ClassJobLevel":40,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":0,"EffectRange":0,"ID":7416,"Icon":"/i/003000/003036.png","IconHD":"/i/003000/003036_hr1.png","IconID":3036,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Rook Overload","Name_de":"TURM-Überladung","Name_en":"Rook Overload","Name_fr":"Surcharge de Tour","Name_ja":"オーバーロード・ルーク","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":2,"PrimaryCostValue":0,"Range":40,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/26"},"27":{"ID":27,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5144,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2rp_emp/ws_s05","Key_en":"ws/bt_2rp_emp/ws_s05","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5144,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":112,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"RDM","Name_de":"RMA","Name_en":"RDM","Name_fr":"MRG","Name_ja":"赤魔道士","PGL":0,"PLD":0,"RDM":1,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":112,"ClassJobLevel":1,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":7527,"Icon":"/i/003000/003225.png","IconHD":"/i/003000/003225_hr1.png","IconID":3225,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Enchanted Riposte","Name_de":"Magische Riposte","Name_en":"Enchanted Riposte","Name_fr":"Riposte enchantée","Name_ja":"エンリポスト","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":43,"PrimaryCostValue":30,"Range":"-1","Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/27"},"28":{"ID":28,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":{"ActionCategory":3,"ActionCombo":0,"ActionProcStatus":0,"ActionTimelineHit":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":5140,"AnimationStart":0,"Aspect":7,"AttackType":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":35,"ClassJobCategory":112,"ClassJobLevel":1,"CooldownGroup":58,"EffectRange":0,"ID":7504,"Icon":"/i/003000/003201.png","IconHD":"/i/003000/003201_hr1.png","IconID":3201,"IsPlayerAction":1,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Riposte","Name_de":"Riposte","Name_en":"Riposte","Name_fr":"Riposte","Name_ja":"リポスト","Omen":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":75,"SecondaryCostValue":30,"StatusGainSelf":0,"TargetArea":0,"UnlockLink":0,"VFX":0,"XAxisModifier":0},"ActionComboTarget":"Action","ActionComboTargetID":7504,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5145,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2rp_emp/ws_s06","Key_en":"ws/bt_2rp_emp/ws_s06","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5145,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":112,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"RDM","Name_de":"RMA","Name_en":"RDM","Name_fr":"MRG","Name_ja":"赤魔道士","PGL":0,"PLD":0,"RDM":1,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":112,"ClassJobLevel":35,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":7528,"Icon":"/i/003000/003226.png","IconHD":"/i/003000/003226_hr1.png","IconID":3226,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Enchanted Zwerchhau","Name_de":"Magischer Zwerchhau","Name_en":"Enchanted Zwerchhau","Name_fr":"Zwerchhau enchanté","Name_ja":"エンツヴェルクハウ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":43,"PrimaryCostValue":25,"Range":"-1","Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/28"},"29":{"ID":29,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":{"ActionCategory":3,"ActionCombo":7504,"ActionProcStatus":0,"ActionTimelineHit":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":5141,"AnimationStart":0,"Aspect":7,"AttackType":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":35,"ClassJobCategory":112,"ClassJobLevel":35,"CooldownGroup":58,"EffectRange":0,"ID":7512,"Icon":"/i/003000/003210.png","IconHD":"/i/003000/003210_hr1.png","IconID":3210,"IsPlayerAction":1,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Zwerchhau","Name_de":"Zwerchhau","Name_en":"Zwerchhau","Name_fr":"Zwerchhau","Name_ja":"ツヴェルクハウ","Omen":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":75,"SecondaryCostValue":30,"StatusGainSelf":0,"TargetArea":0,"UnlockLink":0,"VFX":0,"XAxisModifier":0},"ActionComboTarget":"Action","ActionComboTargetID":7512,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5146,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2rp_emp/ws_s07","Key_en":"ws/bt_2rp_emp/ws_s07","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5146,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":112,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"RDM","Name_de":"RMA","Name_en":"RDM","Name_fr":"MRG","Name_ja":"赤魔道士","PGL":0,"PLD":0,"RDM":1,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":112,"ClassJobLevel":50,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":7529,"Icon":"/i/003000/003227.png","IconHD":"/i/003000/003227_hr1.png","IconID":3227,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Enchanted Redoublement","Name_de":"Magisches Redoublement","Name_en":"Enchanted Redoublement","Name_fr":"Redoublement enchanté","Name_ja":"エンルドゥブルマン","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":43,"PrimaryCostValue":25,"Range":"-1","Recast100ms":22,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/29"},"30":{"ID":30,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":5278,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2rp_emp/ws_s08_hit","Key_en":"ws/bt_2rp_emp/ws_s08_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":5278,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5147,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2rp_emp/ws_s08","Key_en":"ws/bt_2rp_emp/ws_s08","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5147,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":3,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":112,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"RDM","Name_de":"RMA","Name_en":"RDM","Name_fr":"MRG","Name_ja":"赤魔道士","PGL":0,"PLD":0,"RDM":1,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":112,"ClassJobLevel":52,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":8,"ID":7530,"Icon":"/i/003000/003228.png","IconHD":"/i/003000/003228_hr1.png","IconID":3228,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Enchanted Moulinet","Name_de":"Magischer Moulinet","Name_en":"Enchanted Moulinet","Name_fr":"Moulinet enchanté","Name_ja":"エンムーリネ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":43,"PrimaryCostValue":20,"Range":8,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/30"},"31":{"ID":31,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":567,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/dgr_ninja/kuchiyose","Key_en":"magic/dgr_ninja/kuchiyose","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":567,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":30,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":2272,"Icon":"/i/002000/002914.png","IconHD":"/i/002000/002914_hr1.png","IconID":2914,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Rabbit Medium","Name_de":"Hasenmedium","Name_en":"Rabbit Medium","Name_fr":"Kuchiyose","Name_ja":"口寄せの術","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":0,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":65748,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/31"},"32":{"ID":32,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":4034,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/cnj_white/abl008_hit","Key_en":"ability/cnj_white/abl008_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":4034,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5261,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gl_astro/abl019","Key_en":"ability/2gl_astro/abl019","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5261,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":1,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":99,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"AST","Name_de":"AST","Name_en":"AST","Name_fr":"AST","Name_ja":"占星術師","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":99,"ClassJobLevel":62,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":2,"EffectRange":8,"ID":8324,"Icon":"/i/003000/003144.png","IconHD":"/i/003000/003144_hr1.png","IconID":3144,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Stellar Detonation","Name_de":"Stellare Detonation","Name_en":"Stellar Detonation","Name_fr":"Détonation stellaire","Name_ja":"ステラデトネーション","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":30,"SecondaryCostType":40,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/32"},"33":{"ID":33,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":33,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Jugular Rip0101.","Description_de":"F201F6F201F7Kehlreißer0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Jugular Rip0101.","Description_fr":"Arrachage de la jugulaire peut être lancé.","Description_ja":"ジャギュラーリップを実行できる状態。","HitEffect":16,"ID":1842,"Icon":"/i/013000/013611.png","IconHD":"/i/013000/013611_hr1.png","IconID":13611,"InflictedByActor":0,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Ready to Rip","Name_de":"Hungernde Fänge","Name_en":"Ready to Rip","Name_fr":"Arrachage de la jugulaire préparé","Name_ja":"ジャギュラーリップ実行可","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":1842},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":33,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6942,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gb_bgb/abl010","Key_en":"ability/2gb_bgb/abl010","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6942,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":1,"GSM":0,"ID":149,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"GNB","Name_de":"REV","Name_en":"GNB","Name_fr":"PSB","Name_ja":"ガンブレイカー","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":149,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":1,"EffectRange":0,"ID":16156,"Icon":"/i/003000/003420.png","IconHD":"/i/003000/003420_hr1.png","IconID":3420,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Jugular Rip","Name_de":"Kehlreißer","Name_en":"Jugular Rip","Name_fr":"Arrachage de la jugulaire","Name_ja":"ジャギュラーリップ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":1842,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68802,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/33"},"34":{"ID":34,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":34,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Abdomen Tear0101.","Description_de":"F201F6F201F7Bauchschlitzer0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Abdomen Tear0101.","Description_fr":"Lacération de l'abdomen peut être lancée.","Description_ja":"アブドメンテアーを実行できる状態。","HitEffect":16,"ID":1843,"Icon":"/i/013000/013612.png","IconHD":"/i/013000/013612_hr1.png","IconID":13612,"InflictedByActor":0,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Ready to Tear","Name_de":"Geschärfte Klauen","Name_en":"Ready to Tear","Name_fr":"Lacération de l'abdomen préparée","Name_ja":"アブドメンテアー実行可","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":1843},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":34,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6943,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gb_bgb/abl011","Key_en":"ability/2gb_bgb/abl011","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6943,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":1,"GSM":0,"ID":149,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"GNB","Name_de":"REV","Name_en":"GNB","Name_fr":"PSB","Name_ja":"ガンブレイカー","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":149,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":1,"EffectRange":0,"ID":16157,"Icon":"/i/003000/003421.png","IconHD":"/i/003000/003421_hr1.png","IconID":3421,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Abdomen Tear","Name_de":"Bauchschlitzer","Name_en":"Abdomen Tear","Name_fr":"Lacération de l'abdomen","Name_ja":"アブドメンテアー","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":1843,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68802,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/34"},"35":{"ID":35,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":35,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Eye Gouge0101.","Description_de":"F201F6F201F7Augenstecher0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Eye Gouge0101.","Description_fr":"Perforation des yeux peut être lancée.","Description_ja":"アイガウジを実行できる状態。","HitEffect":16,"ID":1844,"Icon":"/i/013000/013613.png","IconHD":"/i/013000/013613_hr1.png","IconID":13613,"InflictedByActor":0,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Ready to Gouge","Name_de":"Blutige Krallen","Name_en":"Ready to Gouge","Name_fr":"Perforation des yeux préparée","Name_ja":"アイガウジ実行可","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":1844},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":35,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6944,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gb_bgb/abl012","Key_en":"ability/2gb_bgb/abl012","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6944,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":1,"GSM":0,"ID":149,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"GNB","Name_de":"REV","Name_en":"GNB","Name_fr":"PSB","Name_ja":"ガンブレイカー","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":149,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":1,"EffectRange":0,"ID":16158,"Icon":"/i/003000/003422.png","IconHD":"/i/003000/003422_hr1.png","IconID":3422,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Eye Gouge","Name_de":"Augenstecher","Name_en":"Eye Gouge","Name_fr":"Perforation des yeux","Name_ja":"アイガウジ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":1844,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68802,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/35"},"36":{"ID":36,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6977,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s10","Key_en":"ws/bt_chk_chk/ws_s10","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6977,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":15,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":15999,"Icon":"/i/003000/003455.png","IconHD":"/i/003000/003455_hr1.png","IconID":3455,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Emboite","Name_de":"Pas Emboite der Rose","Name_en":"Emboite","Name_fr":"Emboîté carmin","Name_ja":"薔薇のアンボワテ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":90,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/36"},"37":{"ID":37,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6978,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s11","Key_en":"ws/bt_chk_chk/ws_s11","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6978,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":15,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":16000,"Icon":"/i/003000/003456.png","IconHD":"/i/003000/003456_hr1.png","IconID":3456,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Entrechat","Name_de":"Entrechat der Schwalbe","Name_en":"Entrechat","Name_fr":"Entrechat outremer","Name_ja":"小鳥のアントルシャ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":90,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/37"},"38":{"ID":38,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6979,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s12","Key_en":"ws/bt_chk_chk/ws_s12","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6979,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":15,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":16001,"Icon":"/i/003000/003457.png","IconHD":"/i/003000/003457_hr1.png","IconID":3457,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Jete","Name_de":"Jete des Laubs","Name_en":"Jete","Name_fr":"Jeté verdoyant","Name_ja":"緑葉のジュテ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":90,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/38"},"39":{"ID":39,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6980,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s13","Key_en":"ws/bt_chk_chk/ws_s13","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6980,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":15,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":16002,"Icon":"/i/003000/003458.png","IconHD":"/i/003000/003458_hr1.png","IconID":3458,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Pirouette","Name_de":"Pirouette der Krone","Name_en":"Pirouette","Name_fr":"Pirouette dorée","Name_ja":"金冠のピルエッテ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":90,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/39"},"40":{"ID":40,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":6982,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s14_hit","Key_en":"ws/bt_chk_chk/ws_s14_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":6982,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6981,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s14","Key_en":"ws/bt_chk_chk/ws_s14","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6981,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":15,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":15,"ID":16003,"Icon":"/i/003000/003459.png","IconHD":"/i/003000/003459_hr1.png","IconID":3459,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Standard Finish","Name_de":"Einfaches Finale","Name_en":"Standard Finish","Name_fr":"Final classique","Name_ja":"スタンダードフィニッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":1,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/40"},"41":{"ID":41,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":6982,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s14_hit","Key_en":"ws/bt_chk_chk/ws_s14_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":6982,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6981,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s14","Key_en":"ws/bt_chk_chk/ws_s14","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6981,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":15,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":15,"ID":16191,"Icon":"/i/003000/003459.png","IconHD":"/i/003000/003459_hr1.png","IconID":3459,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Single Standard Finish","Name_de":"Einfaches Finale I","Name_en":"Single Standard Finish","Name_fr":"Final classique simple","Name_ja":"シングル・スタンダードフィニッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":2,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/41"},"42":{"ID":42,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":6982,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s14_hit","Key_en":"ws/bt_chk_chk/ws_s14_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":6982,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6981,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s14","Key_en":"ws/bt_chk_chk/ws_s14","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6981,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":15,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":15,"ID":16192,"Icon":"/i/003000/003459.png","IconHD":"/i/003000/003459_hr1.png","IconID":3459,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Double Standard Finish","Name_de":"Einfaches Finale II","Name_en":"Double Standard Finish","Name_fr":"Final classique doublé","Name_ja":"ダブル・スタンダードフィニッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":3,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/42"},"43":{"ID":43,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":6984,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15_hit","Key_en":"ws/bt_chk_chk/ws_s15_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":6984,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6983,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15","Key_en":"ws/bt_chk_chk/ws_s15","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6983,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":15,"ID":16004,"Icon":"/i/003000/003474.png","IconHD":"/i/003000/003474_hr1.png","IconID":3474,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Technical Finish","Name_de":"Komplexes Finale","Name_en":"Technical Finish","Name_fr":"Final technique","Name_ja":"テクニカルフィニッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":4,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68790,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/43"},"44":{"ID":44,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":6984,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15_hit","Key_en":"ws/bt_chk_chk/ws_s15_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":6984,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6983,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15","Key_en":"ws/bt_chk_chk/ws_s15","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6983,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":15,"ID":16193,"Icon":"/i/003000/003474.png","IconHD":"/i/003000/003474_hr1.png","IconID":3474,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Single Technical Finish","Name_de":"Komplexes Finale I","Name_en":"Single Technical Finish","Name_fr":"Final technique simple","Name_ja":"シングル・テクニカルフィニッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":5,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68790,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/44"},"45":{"ID":45,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":6984,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15_hit","Key_en":"ws/bt_chk_chk/ws_s15_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":6984,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6983,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15","Key_en":"ws/bt_chk_chk/ws_s15","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6983,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":15,"ID":16194,"Icon":"/i/003000/003474.png","IconHD":"/i/003000/003474_hr1.png","IconID":3474,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Double Technical Finish","Name_de":"Komplexes Finale II","Name_en":"Double Technical Finish","Name_fr":"Final technique doublé","Name_ja":"ダブル・テクニカルフィニッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":6,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68790,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/45"},"46":{"ID":46,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":6984,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15_hit","Key_en":"ws/bt_chk_chk/ws_s15_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":6984,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6983,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15","Key_en":"ws/bt_chk_chk/ws_s15","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6983,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":15,"ID":16195,"Icon":"/i/003000/003474.png","IconHD":"/i/003000/003474_hr1.png","IconID":3474,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Triple Technical Finish","Name_de":"Komplexes Finale III","Name_en":"Triple Technical Finish","Name_fr":"Final technique triplé","Name_ja":"トリプル・テクニカルフィニッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":7,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68790,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/46"},"47":{"ID":47,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":6984,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15_hit","Key_en":"ws/bt_chk_chk/ws_s15_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":6984,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6983,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15","Key_en":"ws/bt_chk_chk/ws_s15","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6983,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":15,"ID":16196,"Icon":"/i/003000/003474.png","IconHD":"/i/003000/003474_hr1.png","IconID":3474,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Quadruple Technical Finish","Name_de":"Komplexes Finale IV","Name_en":"Quadruple Technical Finish","Name_fr":"Final technique quadruplé","Name_ja":"クワッド・テクニカルフィニッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":8,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68790,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/47"},"48":{"ID":48,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":58,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7087,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl034","Key_en":"ability/swl_summon/abl034","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7087,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":1,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":69,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"ACN SMN","Name_de":"HRT BSW","Name_en":"ACN SMN","Name_fr":"ACN INV","Name_ja":"巴術士 召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":69,"ClassJobLevel":10,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":9,"EffectRange":0,"ID":16791,"Icon":"/i/000000/000556.png","IconHD":"/i/000000/000556_hr1.png","IconID":556,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":2,"Name":"Assault I: Glittering Topaz","Name_de":"Egi-Attacke I: Glimmertopas","Name_en":"Assault I: Glittering Topaz","Name_fr":"Frappe Egi I : Éclat de topaze","Name_ja":"エギアサルトI:トパーズの煌き","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":102,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/48"},"49":{"ID":49,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":58,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7087,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl034","Key_en":"ability/swl_summon/abl034","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7087,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":1,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":69,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"ACN SMN","Name_de":"HRT BSW","Name_en":"ACN SMN","Name_fr":"ACN INV","Name_ja":"巴術士 召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":69,"ClassJobLevel":40,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":10,"EffectRange":0,"ID":16792,"Icon":"/i/000000/000557.png","IconHD":"/i/000000/000557_hr1.png","IconID":557,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":2,"Name":"Assault II: Shining Topaz","Name_de":"Egi-Attacke II: Glanztopas","Name_en":"Assault II: Shining Topaz","Name_fr":"Frappe Egi II : Topaze scintillante","Name_ja":"エギアサルトII:トパーズの輝き","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":300,"SecondaryCostType":102,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/49"},"50":{"ID":50,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":58,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7087,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl034","Key_en":"ability/swl_summon/abl034","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7087,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":1,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":69,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"ACN SMN","Name_de":"HRT BSW","Name_en":"ACN SMN","Name_fr":"ACN INV","Name_ja":"巴術士 召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":69,"ClassJobLevel":10,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":9,"EffectRange":0,"ID":16793,"Icon":"/i/000000/000566.png","IconHD":"/i/000000/000566_hr1.png","IconID":566,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":2,"Name":"Assault I: Downburst","Name_de":"Egi-Attacke I: Fallböe","Name_en":"Assault I: Downburst","Name_fr":"Frappe Egi I : Rafale descendante","Name_ja":"エギアサルトI:ダウンバースト","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":300,"SecondaryCostType":102,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/50"},"51":{"ID":51,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":58,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7087,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl034","Key_en":"ability/swl_summon/abl034","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7087,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":1,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":69,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"ACN SMN","Name_de":"HRT BSW","Name_en":"ACN SMN","Name_fr":"ACN INV","Name_ja":"巴術士 召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":69,"ClassJobLevel":40,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":10,"EffectRange":0,"ID":16794,"Icon":"/i/000000/000567.png","IconHD":"/i/000000/000567_hr1.png","IconID":567,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":2,"Name":"Assault II: Glittering Emerald","Name_de":"Egi-Attacke II: Glimmersmaragd","Name_en":"Assault II: Glittering Emerald","Name_fr":"Frappe Egi II : Éclat d'émeraude","Name_ja":"エギアサルトII:エメラルドの煌き","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":300,"SecondaryCostType":102,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/51"},"52":{"ID":52,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":58,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7087,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl034","Key_en":"ability/swl_summon/abl034","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7087,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":10,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":9,"EffectRange":0,"ID":16795,"Icon":"/i/002000/002707.png","IconHD":"/i/002000/002707_hr1.png","IconID":2707,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":2,"Name":"Assault I: Earthen Armor","Name_de":"Egi-Attacke I: Gaia-Panzer","Name_en":"Assault I: Earthen Armor","Name_fr":"Frappe Egi I : Armure tellurique","Name_ja":"エギアサルトI:大地の鎧","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":102,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/52"},"53":{"ID":53,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":58,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7087,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl034","Key_en":"ability/swl_summon/abl034","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7087,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":40,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":10,"EffectRange":0,"ID":16796,"Icon":"/i/002000/002708.png","IconHD":"/i/002000/002708_hr1.png","IconID":2708,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":2,"Name":"Assault II: Mountain Buster","Name_de":"Egi-Attacke II: Bergsprenger","Name_en":"Assault II: Mountain Buster","Name_fr":"Frappe Egi II : Casse-montagnes","Name_ja":"エギアサルトII:マウンテンバスター","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":300,"SecondaryCostType":102,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/53"},"54":{"ID":54,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":58,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7087,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl034","Key_en":"ability/swl_summon/abl034","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7087,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":10,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":9,"EffectRange":0,"ID":16797,"Icon":"/i/002000/002717.png","IconHD":"/i/002000/002717_hr1.png","IconID":2717,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":2,"Name":"Assault I: Aerial Slash","Name_de":"Egi-Attacke I: Lufthieb","Name_en":"Assault I: Aerial Slash","Name_fr":"Frappe Egi I : Taillade aérienne","Name_ja":"エギアサルトI:エリアルスラッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":300,"SecondaryCostType":102,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/54"},"55":{"ID":55,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":58,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7087,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl034","Key_en":"ability/swl_summon/abl034","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7087,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":40,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":10,"EffectRange":0,"ID":16798,"Icon":"/i/002000/002718.png","IconHD":"/i/002000/002718_hr1.png","IconID":2718,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":2,"Name":"Assault II: Slipstream","Name_de":"Egi-Attacke II: Wirbelströmung","Name_en":"Assault II: Slipstream","Name_fr":"Frappe Egi II : Sillage","Name_ja":"エギアサルトII:スリップストリーム","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":300,"SecondaryCostType":102,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/55"},"56":{"ID":56,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":58,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7087,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl034","Key_en":"ability/swl_summon/abl034","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7087,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":10,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":9,"EffectRange":0,"ID":16799,"Icon":"/i/002000/002726.png","IconHD":"/i/002000/002726_hr1.png","IconID":2726,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":2,"Name":"Assault I: Crimson Cyclone","Name_de":"Egi-Attacke I: Zinnober-Zyklon","Name_en":"Assault I: Crimson Cyclone","Name_fr":"Frappe Egi I : Cyclone écarlate","Name_ja":"エギアサルトI:クリムゾンサイクロン","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":300,"SecondaryCostType":102,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/56"},"57":{"ID":57,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":58,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7087,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl034","Key_en":"ability/swl_summon/abl034","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7087,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":40,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":10,"EffectRange":0,"ID":16800,"Icon":"/i/002000/002727.png","IconHD":"/i/002000/002727_hr1.png","IconID":2727,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":2,"Name":"Assault II: Flaming Crush","Name_de":"Egi-Attacke II: Flammenstoß","Name_en":"Assault II: Flaming Crush","Name_fr":"Frappe Egi II : Fracassement flamboyant","Name_ja":"エギアサルトII:フレイミングクラッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":300,"SecondaryCostType":102,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/57"},"58":{"ID":58,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":436,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"ability/swl_summon/abl005","Key_en":"ability/swl_summon/abl005","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":436,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":50,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":24,"EffectRange":0,"ID":16801,"Icon":"/i/002000/002709.png","IconHD":"/i/002000/002709_hr1.png","IconID":2709,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Enkindle: Earthen Fury","Name_de":"Entflammung: Gaias Zorn","Name_en":"Enkindle: Earthen Fury","Name_fr":"Galvanisation : Fureur tellurique","Name_ja":"エンキンドル:大地の怒り","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":1800,"SecondaryCostType":102,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":66632,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/58"},"59":{"ID":59,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":436,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"ability/swl_summon/abl005","Key_en":"ability/swl_summon/abl005","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":436,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":50,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":24,"EffectRange":0,"ID":16802,"Icon":"/i/002000/002719.png","IconHD":"/i/002000/002719_hr1.png","IconID":2719,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Enkindle: Aerial Blast","Name_de":"Entflammung: Windschlag","Name_en":"Enkindle: Aerial Blast","Name_fr":"Galvanisation : Rafale aérienne","Name_ja":"エンキンドル:エリアルブラスト","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":1800,"SecondaryCostType":102,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":66632,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/59"},"60":{"ID":60,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":436,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"ability/swl_summon/abl005","Key_en":"ability/swl_summon/abl005","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":436,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":50,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":24,"EffectRange":0,"ID":16803,"Icon":"/i/002000/002728.png","IconHD":"/i/002000/002728_hr1.png","IconID":2728,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Enkindle: Inferno","Name_de":"Entflammung: Inferno","Name_en":"Enkindle: Inferno","Name_fr":"Galvanisation : Flammes de l'enfer","Name_ja":"エンキンドル:地獄の火炎","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":1800,"SecondaryCostType":102,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":66632,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/60"},"61":{"ID":61,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":7056,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/dgr_ninja/abl027_hit","Key_en":"ability/dgr_ninja/abl027_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":7056,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7055,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/dgr_ninja/abl027","Key_en":"ability/dgr_ninja/abl027","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7055,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":1,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":76,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":16491,"Icon":"/i/002000/002925.png","IconHD":"/i/002000/002925_hr1.png","IconID":2925,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Goka Mekkyaku","Name_de":"Goka Mekkyaku","Name_en":"Goka Mekkyaku","Name_fr":"Gôka Mekkyaku","Name_ja":"劫火滅却の術","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":15,"Recast100ms":15,"SecondaryCostType":32,"SecondaryCostValue":497,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/61"},"62":{"ID":62,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7057,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/dgr_ninja/abl028","Key_en":"ability/dgr_ninja/abl028","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7057,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":2,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":76,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":16492,"Icon":"/i/002000/002926.png","IconHD":"/i/002000/002926_hr1.png","IconID":2926,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Hyosho Ranryu","Name_de":"Hyosho Ranryu","Name_en":"Hyosho Ranryu","Name_fr":"Hyôshô Ranryû","Name_ja":"氷晶乱流の術","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":25,"Recast100ms":15,"SecondaryCostType":32,"SecondaryCostValue":497,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/62"},"63":{"ID":63,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3858,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2gl_astro/mgc002","Key_en":"magic/2gl_astro/mgc002","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3858,"AnimationStart":{"ID":40,"Name":{"ActionTimelineIDMode":0,"ID":3855,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_ast_start","Key_en":"battle/magic_ast_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":3855,"VFX":{"ID":193,"Location":"cmas_castx0h","Location_en":"cmas_castx0h"},"VFXTarget":"VFX","VFXTargetID":193},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":40,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":1,"CanTargetHostile":0,"CanTargetParty":1,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":1,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":99,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"AST","Name_de":"AST","Name_en":"AST","Name_fr":"AST","Name_ja":"占星術師","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":99,"ClassJobLevel":34,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":17151,"Icon":"/i/003000/003127.png","IconHD":"/i/003000/003127_hr1.png","IconID":3127,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Aspected Benefic","Name_de":"Harmonischer Orbis","Name_en":"Aspected Benefic","Name_fr":"Bienfaisance aspectée","Name_ja":"アスペクト・ベネフィク","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":7,"Range":30,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":840,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":10,"VFX":{"ID":89,"Location":"cmrv_ligct0c","Location_en":"cmrv_ligct0c"},"VFXTarget":"VFX","VFXTargetID":89},"VFXTarget":"ActionCastVFX","VFXTargetID":10,"XAxisModifier":0},"Url":"/ActionIndirection/63"},"64":{"ID":64,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":4001,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2gl_astro/mgc008_hit","Key_en":"magic/2gl_astro/mgc008_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":4001,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3864,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2gl_astro/mgc008","Key_en":"magic/2gl_astro/mgc008","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3864,"AnimationStart":{"ID":40,"Name":{"ActionTimelineIDMode":0,"ID":3855,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_ast_start","Key_en":"battle/magic_ast_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":3855,"VFX":{"ID":193,"Location":"cmas_castx0h","Location_en":"cmas_castx0h"},"VFXTarget":"VFX","VFXTargetID":193},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":40,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":20,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":1,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":99,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"AST","Name_de":"AST","Name_en":"AST","Name_fr":"AST","Name_ja":"占星術師","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":99,"ClassJobLevel":42,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":15,"ID":17152,"Icon":"/i/003000/003130.png","IconHD":"/i/003000/003130_hr1.png","IconID":3130,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Aspected Helios","Name_de":"Aspektierter Helios","Name_en":"Aspected Helios","Name_fr":"Hélios aspecté","Name_ja":"アスペクト・ヘリオス","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":8,"Range":0,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":840,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":10,"VFX":{"ID":89,"Location":"cmrv_ligct0c","Location_en":"cmrv_ligct0c"},"VFXTarget":"VFX","VFXTargetID":89},"VFXTarget":"ActionCastVFX","VFXTargetID":10,"XAxisModifier":0},"Url":"/ActionIndirection/64"},"65":{"ID":65,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5232,"IsLoop":2,"IsMotionCanceledByMoving":0,"Key":"ability/2gn_machin/abl024","Key_en":"ability/2gn_machin/abl024","KillUpper":0,"LoadType":1,"LookAtMode":2,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":1,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5232,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":96,"LNC":0,"LTW":0,"MCH":1,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"MCH","Name_de":"MCH","Name_en":"MCH","Name_fr":"MCH","Name_ja":"機工士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":96,"ClassJobLevel":45,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":1,"EffectRange":0,"ID":16766,"Icon":"/i/003000/003039.png","IconHD":"/i/003000/003039_hr1.png","IconID":3039,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Detonator","Name_de":"Detonator","Name_en":"Detonator","Name_fr":"Détonateur","Name_ja":"デトネーター","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/65"},"66":{"ID":66,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3201,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp001","Key_en":"mon_sp/[SKL_ID]/mon_sp001","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3201,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":3,"Name":"打","Name_de":"打","Name_en":"打","Name_fr":"contondant","Name_ja":"打"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":3,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":96,"LNC":0,"LTW":0,"MCH":1,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"MCH","Name_de":"MCH","Name_en":"MCH","Name_fr":"MCH","Name_ja":"機工士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":96,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":58,"EffectRange":0,"ID":16504,"Icon":"/i/003000/003504.png","IconHD":"/i/003000/003504_hr1.png","IconID":3504,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Arm Punch","Name_de":"Eiserne Faust","Name_en":"Arm Punch","Name_fr":"Coup de poing","Name_ja":"クイーン・アームパンチ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":3,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/66"},"67":{"ID":67,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3203,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp003","Key_en":"mon_sp/[SKL_ID]/mon_sp003","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3203,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":3,"Name":"打","Name_de":"打","Name_en":"打","Name_fr":"contondant","Name_ja":"打"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":3,"BehaviourType":1,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":96,"LNC":0,"LTW":0,"MCH":1,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"MCH","Name_de":"MCH","Name_en":"MCH","Name_fr":"MCH","Name_ja":"機工士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":96,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":58,"EffectRange":0,"ID":17206,"Icon":"/i/003000/003505.png","IconHD":"/i/003000/003505_hr1.png","IconID":3505,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Roller Dash","Name_de":"Rollender Ansturm","Name_en":"Roller Dash","Name_fr":"Roues véloces","Name_ja":"クイーン・ローラーダッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":30,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/67"},"68":{"ID":68,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3202,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp002","Key_en":"mon_sp/[SKL_ID]/mon_sp002","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3202,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":3,"Name":"打","Name_de":"打","Name_en":"打","Name_fr":"contondant","Name_ja":"打"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":3,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":96,"LNC":0,"LTW":0,"MCH":1,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"MCH","Name_de":"MCH","Name_en":"MCH","Name_fr":"MCH","Name_ja":"機工士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":96,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":0,"EffectRange":0,"ID":16503,"Icon":"/i/003000/003503.png","IconHD":"/i/003000/003503_hr1.png","IconID":3503,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Pile Bunker","Name_de":"Pressluftramme","Name_en":"Pile Bunker","Name_fr":"Marteau piqueur","Name_ja":"クイーン・パイルバンカー","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":2,"PrimaryCostValue":0,"Range":3,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/68"},"69":{"ID":69,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":7185,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2ax_emp/ws_s11_hit","Key_en":"ws/bt_2ax_emp/ws_s11_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":7185,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7184,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2ax_emp/ws_s11","Key_en":"ws/bt_2ax_emp/ws_s11","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7184,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":22,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"WAR","Name_de":"KRG","Name_en":"WAR","Name_fr":"GUE","Name_ja":"戦士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":1,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":22,"ClassJobLevel":72,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":16463,"Icon":"/i/002000/002566.png","IconHD":"/i/002000/002566_hr1.png","IconID":2566,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Chaotic Cyclone","Name_de":"Chaosklinge","Name_en":"Chaotic Cyclone","Name_fr":"Cyclone chaotique","Name_ja":"カオティックサイクロン","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":50,"Range":0,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1897,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/69"},"70":{"ID":70,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7186,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2ax_emp/ws_s12","Key_en":"ws/bt_2ax_emp/ws_s12","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7186,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":22,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"WAR","Name_de":"KRG","Name_en":"WAR","Name_fr":"GUE","Name_ja":"戦士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":1,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":22,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":16465,"Icon":"/i/002000/002568.png","IconHD":"/i/002000/002568_hr1.png","IconID":2568,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Inner Chaos","Name_de":"Inneres Chaos","Name_en":"Inner Chaos","Name_fr":"Chaos intérieur","Name_ja":"インナーカオス","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":50,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1897,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/70"},"71":{"ID":71,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":58,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7060,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2kt_samrai/mgc007","Key_en":"magic/2kt_samrai/mgc007","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/normal_idle","File_en":"weapon/normal_idle","ID":2,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":2},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7060,"AnimationStart":{"ID":43,"Name":{"ActionTimelineIDMode":0,"ID":5116,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sam_start","Key_en":"battle/magic_sam_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":5116,"VFX":null,"VFXTarget":"VFX","VFXTargetID":0},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":43,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":111,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SAM","Name_de":"SAM","Name_en":"SAM","Name_fr":"SAM","Name_ja":"侍","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":1,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":111,"ClassJobLevel":76,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":15,"EffectRange":0,"ID":16484,"Icon":"/i/003000/003181.png","IconHD":"/i/003000/003181_hr1.png","IconID":3181,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Kaeshi: Higanbana","Name_de":"Kaeshi Higanbana","Name_en":"Kaeshi: Higanbana","Name_fr":"Kaeshi Higanbana","Name_ja":"返し彼岸花","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":600,"SecondaryCostType":14,"SecondaryCostValue":1,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":40,"VFX":{"ID":138,"Location":"cmsa_castx0t","Location_en":"cmsa_castx0t"},"VFXTarget":"VFX","VFXTargetID":138},"VFXTarget":"ActionCastVFX","VFXTargetID":40,"XAxisModifier":0},"Url":"/ActionIndirection/71"},"72":{"ID":72,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":5274,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2kt_samrai/mgc002_hit","Key_en":"magic/2kt_samrai/mgc002_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":5274,"AdditionalCooldownGroup":58,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5119,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2kt_samrai/mgc002","Key_en":"magic/2kt_samrai/mgc002","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/normal_idle","File_en":"weapon/normal_idle","ID":2,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":2},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5119,"AnimationStart":{"ID":43,"Name":{"ActionTimelineIDMode":0,"ID":5116,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sam_start","Key_en":"battle/magic_sam_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":5116,"VFX":null,"VFXTarget":"VFX","VFXTargetID":0},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":43,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":3,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":111,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SAM","Name_de":"SAM","Name_en":"SAM","Name_fr":"SAM","Name_ja":"侍","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":1,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":111,"ClassJobLevel":76,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":15,"EffectRange":8,"ID":16485,"Icon":"/i/003000/003182.png","IconHD":"/i/003000/003182_hr1.png","IconID":3182,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Kaeshi: Goken","Name_de":"Kaeshi Goken","Name_en":"Kaeshi: Goken","Name_fr":"Kaeshi Goken","Name_ja":"返し五剣","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":8,"Recast100ms":600,"SecondaryCostType":14,"SecondaryCostValue":2,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":40,"VFX":{"ID":138,"Location":"cmsa_castx0t","Location_en":"cmsa_castx0t"},"VFXTarget":"VFX","VFXTargetID":138},"VFXTarget":"ActionCastVFX","VFXTargetID":40,"XAxisModifier":0},"Url":"/ActionIndirection/72"},"73":{"ID":73,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":58,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7059,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2kt_samrai/mgc006","Key_en":"magic/2kt_samrai/mgc006","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/normal_idle","File_en":"weapon/normal_idle","ID":2,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":2},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7059,"AnimationStart":{"ID":43,"Name":{"ActionTimelineIDMode":0,"ID":5116,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sam_start","Key_en":"battle/magic_sam_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":5116,"VFX":null,"VFXTarget":"VFX","VFXTargetID":0},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":43,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":111,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SAM","Name_de":"SAM","Name_en":"SAM","Name_fr":"SAM","Name_ja":"侍","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":1,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":111,"ClassJobLevel":76,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":15,"EffectRange":0,"ID":16486,"Icon":"/i/003000/003183.png","IconHD":"/i/003000/003183_hr1.png","IconID":3183,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Kaeshi: Setsugekka","Name_de":"Kaeshi Setsugekka","Name_en":"Kaeshi: Setsugekka","Name_fr":"Kaeshi Setsugekka","Name_ja":"返し雪月花","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":600,"SecondaryCostType":14,"SecondaryCostValue":3,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":48,"VFX":{"ID":515,"Location":"mgc_2kt001c1t","Location_en":"mgc_2kt001c1t"},"VFXTarget":"VFX","VFXTargetID":515},"VFXTarget":"ActionCastVFX","VFXTargetID":48,"XAxisModifier":0},"Url":"/ActionIndirection/73"},"74":{"ID":74,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":{"ActionCategory":3,"ActionCombo":7512,"ActionProcStatus":0,"ActionTimelineHit":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":5146,"AnimationStart":0,"Aspect":7,"AttackType":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":0,"ClassJobCategory":112,"ClassJobLevel":50,"CooldownGroup":58,"EffectRange":0,"ID":7529,"Icon":"/i/003000/003227.png","IconHD":"/i/003000/003227_hr1.png","IconID":3227,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Enchanted Redoublement","Name_de":"Magisches Redoublement","Name_en":"Enchanted Redoublement","Name_fr":"Redoublement enchanté","Name_ja":"エンルドゥブルマン","Omen":0,"PreservesCombo":0,"PrimaryCostType":43,"PrimaryCostValue":25,"Range":"-1","Recast100ms":22,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":0,"TargetArea":0,"UnlockLink":0,"VFX":0,"XAxisModifier":0},"ActionComboTarget":"Action","ActionComboTargetID":7529,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5168,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2rp_redmage/mgc012","Key_en":"magic/2rp_redmage/mgc012","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5168,"AnimationStart":{"ID":45,"Name":{"ActionTimelineIDMode":0,"ID":5155,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_rdm_start","Key_en":"battle/magic_rdm_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":5155,"VFX":{"ID":99,"Location":"cmbl_castx0c","Location_en":"cmbl_castx0c"},"VFXTarget":"VFX","VFXTargetID":99},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":45,"Aspect":1,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":112,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"RDM","Name_de":"RMA","Name_en":"RDM","Name_fr":"MRG","Name_ja":"赤魔道士","PGL":0,"PLD":0,"RDM":1,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":112,"ClassJobLevel":68,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":7525,"Icon":"/i/003000/003223.png","IconHD":"/i/003000/003223_hr1.png","IconID":3223,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Verflare","Name_de":"Erzflare","Name_en":"Verflare","Name_fr":"VerBrasier","Name_ja":"ヴァルフレア","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":58,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":3,"VFX":{"ID":85,"Location":"cmat_ligct0c","Location_en":"cmat_ligct0c"},"VFXTarget":"VFX","VFXTargetID":85},"VFXTarget":"ActionCastVFX","VFXTargetID":3,"XAxisModifier":0},"Url":"/ActionIndirection/74"},"75":{"ID":75,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":{"ActionCategory":3,"ActionCombo":7512,"ActionProcStatus":0,"ActionTimelineHit":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":5146,"AnimationStart":0,"Aspect":7,"AttackType":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":0,"ClassJobCategory":112,"ClassJobLevel":50,"CooldownGroup":58,"EffectRange":0,"ID":7529,"Icon":"/i/003000/003227.png","IconHD":"/i/003000/003227_hr1.png","IconID":3227,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Enchanted Redoublement","Name_de":"Magisches Redoublement","Name_en":"Enchanted Redoublement","Name_fr":"Redoublement enchanté","Name_ja":"エンルドゥブルマン","Omen":0,"PreservesCombo":0,"PrimaryCostType":43,"PrimaryCostValue":25,"Range":"-1","Recast100ms":22,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":0,"TargetArea":0,"UnlockLink":0,"VFX":0,"XAxisModifier":0},"ActionComboTarget":"Action","ActionComboTargetID":7529,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5169,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2rp_redmage/mgc013","Key_en":"magic/2rp_redmage/mgc013","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5169,"AnimationStart":{"ID":46,"Name":{"ActionTimelineIDMode":0,"ID":5155,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_rdm_start","Key_en":"battle/magic_rdm_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":5155,"VFX":{"ID":100,"Location":"cmwh_castx0c","Location_en":"cmwh_castx0c"},"VFXTarget":"VFX","VFXTargetID":100},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":46,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":112,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"RDM","Name_de":"RMA","Name_en":"RDM","Name_fr":"MRG","Name_ja":"赤魔道士","PGL":0,"PLD":0,"RDM":1,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":112,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":7526,"Icon":"/i/003000/003224.png","IconHD":"/i/003000/003224_hr1.png","IconID":3224,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Verholy","Name_de":"Erz-Sanctus","Name_en":"Verholy","Name_fr":"VerMiracle","Name_ja":"ヴァルホーリー","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":58,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68123,"VFX":{"ID":3,"VFX":{"ID":85,"Location":"cmat_ligct0c","Location_en":"cmat_ligct0c"},"VFXTarget":"VFX","VFXTargetID":85},"VFXTarget":"ActionCastVFX","VFXTargetID":3,"XAxisModifier":0},"Url":"/ActionIndirection/75"},"76":{"ID":76,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7119,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2rp_emp/ws_s09","Key_en":"ws/bt_2rp_emp/ws_s09","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7119,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":112,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"RDM","Name_de":"RMA","Name_en":"RDM","Name_fr":"MRG","Name_ja":"赤魔道士","PGL":0,"PLD":0,"RDM":1,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":112,"ClassJobLevel":76,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":16528,"Icon":"/i/003000/003232.png","IconHD":"/i/003000/003232_hr1.png","IconID":3232,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Enchanted Reprise","Name_de":"Magische Reprise","Name_en":"Enchanted Reprise","Name_fr":"Reprise enchantée","Name_ja":"エンルプリーズ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":43,"PrimaryCostValue":5,"Range":25,"Recast100ms":22,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/76"},"77":{"ID":77,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":{"ActionCategory":2,"ActionCombo":7529,"ActionProcStatus":0,"ActionTimelineHit":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":5168,"AnimationStart":45,"Aspect":1,"AttackType":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":0,"ClassJobCategory":112,"ClassJobLevel":68,"CooldownGroup":58,"EffectRange":0,"ID":7525,"Icon":"/i/003000/003223.png","IconHD":"/i/003000/003223_hr1.png","IconID":3223,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Verflare","Name_de":"Erzflare","Name_en":"Verflare","Name_fr":"VerBrasier","Name_ja":"ヴァルフレア","Omen":0,"PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":58,"SecondaryCostValue":0,"StatusGainSelf":0,"TargetArea":0,"UnlockLink":0,"VFX":3,"XAxisModifier":0},"ActionComboTarget":"Action","ActionComboTargetID":7525,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7121,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2rp_redmage/abl011","Key_en":"ability/2rp_redmage/abl011","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7121,"AnimationStart":{"ID":45,"Name":{"ActionTimelineIDMode":0,"ID":5155,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_rdm_start","Key_en":"battle/magic_rdm_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":5155,"VFX":{"ID":99,"Location":"cmbl_castx0c","Location_en":"cmbl_castx0c"},"VFXTarget":"VFX","VFXTargetID":99},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":45,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":112,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"RDM","Name_de":"RMA","Name_en":"RDM","Name_fr":"MRG","Name_ja":"赤魔道士","PGL":0,"PLD":0,"RDM":1,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":112,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":16530,"Icon":"/i/003000/003234.png","IconHD":"/i/003000/003234_hr1.png","IconID":3234,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Scorch","Name_de":"Versengung","Name_en":"Scorch","Name_fr":"Calcination","Name_ja":"スコーチ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":58,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":3,"VFX":{"ID":85,"Location":"cmat_ligct0c","Location_en":"cmat_ligct0c"},"VFXTarget":"VFX","VFXTargetID":85},"VFXTarget":"ActionCastVFX","VFXTargetID":3,"XAxisModifier":0},"Url":"/ActionIndirection/77"},"78":{"ID":78,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":7153,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gl_astro/abl025_hit","Key_en":"ability/2gl_astro/abl025_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":7153,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7152,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gl_astro/abl025","Key_en":"ability/2gl_astro/abl025","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7152,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":1,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":99,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"AST","Name_de":"AST","Name_en":"AST","Name_fr":"AST","Name_ja":"占星術師","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":99,"ClassJobLevel":76,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":4,"EffectRange":20,"ID":16558,"Icon":"/i/003000/003551.png","IconHD":"/i/003000/003551_hr1.png","IconID":3551,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Horoscope","Name_de":"Horoskop","Name_en":"Horoscope","Name_fr":"Horoscope","Name_ja":"ホロスコープ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":10,"SecondaryCostType":96,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/78"},"79":{"ID":79,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7094,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl036","Key_en":"ability/swl_summon/abl036","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7094,"AnimationStart":{"ID":38,"Name":{"ActionTimelineIDMode":0,"ID":104,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sum_start","Key_en":"battle/magic_sum_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":104,"VFX":{"ID":103,"Location":"cmsm_castx0s","Location_en":"cmsm_castx0s"},"VFXTarget":"VFX","VFXTargetID":103},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":38,"Aspect":1,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":72,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":16514,"Icon":"/i/002000/002735.png","IconHD":"/i/002000/002735_hr1.png","IconID":2735,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Fountain of Fire","Name_de":"Quell des Feuers","Name_en":"Fountain of Fire","Name_fr":"Flamme de la vie","Name_ja":"霊泉の炎","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":93,"SecondaryCostValue":1,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":3,"VFX":{"ID":85,"Location":"cmat_ligct0c","Location_en":"cmat_ligct0c"},"VFXTarget":"VFX","VFXTargetID":85},"VFXTarget":"ActionCastVFX","VFXTargetID":3,"XAxisModifier":0},"Url":"/ActionIndirection/79"},"80":{"ID":80,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":40,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Brand of Purgatory0101.","Description_de":"F201F6F201F7Zeichen der Läuterung0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Brand of Purgatory0101.","Description_fr":"Tison du purgatoire peut être lancé.","Description_ja":"煉獄の炎を実行できる状態。","HitEffect":16,"ID":1867,"Icon":"/i/012000/012733.png","IconHD":"/i/012000/012733_hr1.png","IconID":12733,"InflictedByActor":0,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Hellish Conduit","Name_de":"Innerer Quell","Name_en":"Hellish Conduit","Name_fr":"Feu spirituel","Name_ja":"霊泉","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":1867},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":40,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":7096,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl037_hit","Key_en":"ability/swl_summon/abl037_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":7096,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7095,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl037","Key_en":"ability/swl_summon/abl037","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7095,"AnimationStart":{"ID":38,"Name":{"ActionTimelineIDMode":0,"ID":104,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sum_start","Key_en":"battle/magic_sum_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":104,"VFX":{"ID":103,"Location":"cmsm_castx0s","Location_en":"cmsm_castx0s"},"VFXTarget":"VFX","VFXTargetID":103},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":38,"Aspect":1,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":72,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":8,"ID":16515,"Icon":"/i/002000/002736.png","IconHD":"/i/002000/002736_hr1.png","IconID":2736,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Brand of Purgatory","Name_de":"Zeichen der Läuterung","Name_en":"Brand of Purgatory","Name_fr":"Tison du purgatoire","Name_ja":"煉獄の炎","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":10,"PrimaryCostValue":1867,"Range":25,"Recast100ms":25,"SecondaryCostType":93,"SecondaryCostValue":1,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":3,"VFX":{"ID":85,"Location":"cmat_ligct0c","Location_en":"cmat_ligct0c"},"VFXTarget":"VFX","VFXTargetID":85},"VFXTarget":"ActionCastVFX","VFXTargetID":3,"XAxisModifier":0},"Url":"/ActionIndirection/80"},"81":{"ID":81,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7093,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl035","Key_en":"ability/swl_summon/abl035","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7093,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":72,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":15,"EffectRange":0,"ID":16513,"Icon":"/i/002000/002734.png","IconHD":"/i/002000/002734_hr1.png","IconID":2734,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Firebird Trance","Name_de":"Phönix-Trance","Name_en":"Firebird Trance","Name_fr":"Transe-Phénix","Name_ja":"トランス・フェニックス","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":550,"SecondaryCostType":92,"SecondaryCostValue":1,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/81"},"82":{"ID":82,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7097,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl038","Key_en":"ability/swl_summon/abl038","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7097,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":72,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":15,"EffectRange":0,"ID":16549,"Icon":"/i/002000/002734.png","IconHD":"/i/002000/002734_hr1.png","IconID":2734,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Firebird Trance","Name_de":"Phönix-Trance","Name_en":"Firebird Trance","Name_fr":"Transe-Phénix","Name_ja":"トランス・フェニックス","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":550,"SecondaryCostType":92,"SecondaryCostValue":2,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/82"},"83":{"ID":83,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3201,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp001","Key_en":"mon_sp/[SKL_ID]/mon_sp001","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3201,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":0,"EffectRange":15,"ID":16517,"Icon":"/i/002000/002731.png","IconHD":"/i/002000/002731_hr1.png","IconID":2731,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Everlasting Flight","Name_de":"Schwingen der Unsterblichkeit","Name_en":"Everlasting Flight","Name_fr":"Vol éternel","Name_ja":"不死鳥の翼","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/83"},"84":{"ID":84,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7098,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl039","Key_en":"ability/swl_summon/abl039","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7098,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":5,"EffectRange":0,"ID":16516,"Icon":"/i/002000/002737.png","IconHD":"/i/002000/002737_hr1.png","IconID":2737,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Enkindle Phoenix","Name_de":"Phönix-Entflammung","Name_en":"Enkindle Phoenix","Name_fr":"Galvanisation Phénix","Name_ja":"エンキンドル・フェニックス","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":100,"SecondaryCostType":103,"SecondaryCostValue":1,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/84"},"85":{"ID":85,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3202,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp002","Key_en":"mon_sp/[SKL_ID]/mon_sp002","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3202,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":1,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":0,"EffectRange":0,"ID":16519,"Icon":"/i/002000/002733.png","IconHD":"/i/002000/002733_hr1.png","IconID":2733,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Scarlet Flame","Name_de":"Scharlachflamme","Name_en":"Scarlet Flame","Name_fr":"Flamme écarlate","Name_ja":"火焔","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":100,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/85"},"86":{"ID":86,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3203,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp003","Key_en":"mon_sp/[SKL_ID]/mon_sp003","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3203,"AnimationStart":{"ID":8,"Name":{"ActionTimelineIDMode":0,"ID":130,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"battle/mon_sp_a_start","Key_en":"battle/mon_sp_a_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":2,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":130,"VFX":null,"VFXTarget":"VFX","VFXTargetID":0},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":8,"Aspect":1,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":0,"EffectRange":5,"ID":16518,"Icon":"/i/002000/002732.png","IconHD":"/i/002000/002732_hr1.png","IconID":2732,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Revelation","Name_de":"Offenbarung","Name_en":"Revelation","Name_fr":"Révélation","Name_ja":"リヴァレーション","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":100,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":9,"VFX":{"ID":81,"Location":"cmat_wndct0c","Location_en":"cmat_wndct0c"},"VFXTarget":"VFX","VFXTargetID":81},"VFXTarget":"ActionCastVFX","VFXTargetID":9,"XAxisModifier":0},"Url":"/ActionIndirection/86"},"87":{"ID":87,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":32,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Raiden Thrust0101.","Description_de":"F201F6F201F7Überfallsstoß0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Raiden Thrust0101.","Description_fr":"Percée Raiden peut être lancée.","Description_ja":"竜眼雷電を実行できる状態。","HitEffect":16,"ID":1863,"Icon":"/i/012000/012584.png","IconHD":"/i/012000/012584_hr1.png","IconID":12584,"InflictedByActor":0,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Raiden Thrust Ready","Name_de":"Überfallsstoß bereit","Name_en":"Raiden Thrust Ready","Name_fr":"Percée Raiden préparée","Name_ja":"竜眼雷電実行可","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":1863},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":32,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7049,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2sp_emp/ws_s13","Key_en":"ws/bt_2sp_emp/ws_s13","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7049,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":1,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":23,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DRG","Name_de":"DRG","Name_en":"DRG","Name_fr":"DRG","Name_ja":"竜騎士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"SAM":0,"SCH":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":23,"ClassJobLevel":76,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":16479,"Icon":"/i/002000/002592.png","IconHD":"/i/002000/002592_hr1.png","IconID":2592,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Raiden Thrust","Name_de":"Überfallsstoß","Name_en":"Raiden Thrust","Name_fr":"Percée Raiden","Name_ja":"竜眼雷電","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1863,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/87"}} \ No newline at end of file +{"1":{"ID":1,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8206,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/swd_knight/mgc004","Key_en":"magic/swd_knight/mgc004","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8206,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":20,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"PLD","Name_de":"PLD","Name_en":"PLD","Name_fr":"PLD","Name_ja":"ナイト","PGL":0,"PLD":1,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":20,"ClassJobLevel":90,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":25748,"Icon":"/i/002000/002952.png","IconHD":"/i/002000/002952_hr1.png","IconID":2952,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Blade of Faith","Name_de":"Klinge der Frömmigkeit","Name_en":"Blade of Faith","Name_fr":"Lame de foi","Name_ja":"ブレード・オブ・フェイス","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":3019,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/1"},"2":{"ID":2,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":{"ActionCategory":2,"ActionCombo":0,"ActionProcStatus":0,"ActionTimelineHit":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":8206,"AnimationStart":0,"Aspect":7,"AttackType":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":0,"ClassJobCategory":20,"ClassJobLevel":90,"CooldownGroup":58,"EffectRange":5,"ID":25748,"Icon":"/i/002000/002952.png","IconHD":"/i/002000/002952_hr1.png","IconID":2952,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Blade of Faith","Name_de":"Klinge der Frömmigkeit","Name_en":"Blade of Faith","Name_fr":"Lame de foi","Name_ja":"ブレード・オブ・フェイス","Omen":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":3019,"StatusGainSelf":0,"TargetArea":0,"UnlockLink":0,"VFX":0,"XAxisModifier":0},"ActionComboTarget":"Action","ActionComboTargetID":25748,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8207,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/swd_knight/mgc005","Key_en":"magic/swd_knight/mgc005","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8207,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":20,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"PLD","Name_de":"PLD","Name_en":"PLD","Name_fr":"PLD","Name_ja":"ナイト","PGL":0,"PLD":1,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":20,"ClassJobLevel":90,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":25749,"Icon":"/i/002000/002953.png","IconHD":"/i/002000/002953_hr1.png","IconID":2953,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Blade of Truth","Name_de":"Klinge der Redlichkeit","Name_en":"Blade of Truth","Name_fr":"Lame de vérité","Name_ja":"ブレード・オブ・トゥルース","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":25,"SecondaryCostType":58,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/2"},"3":{"ID":3,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":{"ActionCategory":2,"ActionCombo":25748,"ActionProcStatus":0,"ActionTimelineHit":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":8207,"AnimationStart":0,"Aspect":7,"AttackType":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":0,"ClassJobCategory":20,"ClassJobLevel":90,"CooldownGroup":58,"EffectRange":5,"ID":25749,"Icon":"/i/002000/002953.png","IconHD":"/i/002000/002953_hr1.png","IconID":2953,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Blade of Truth","Name_de":"Klinge der Redlichkeit","Name_en":"Blade of Truth","Name_fr":"Lame de vérité","Name_ja":"ブレード・オブ・トゥルース","Omen":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":25,"SecondaryCostType":58,"SecondaryCostValue":0,"StatusGainSelf":0,"TargetArea":0,"UnlockLink":0,"VFX":0,"XAxisModifier":0},"ActionComboTarget":"Action","ActionComboTargetID":25749,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8208,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/swd_knight/mgc006","Key_en":"magic/swd_knight/mgc006","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8208,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":20,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"PLD","Name_de":"PLD","Name_en":"PLD","Name_fr":"PLD","Name_ja":"ナイト","PGL":0,"PLD":1,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":20,"ClassJobLevel":90,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":25750,"Icon":"/i/002000/002954.png","IconHD":"/i/002000/002954_hr1.png","IconID":2954,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Blade of Valor","Name_de":"Klinge der Tapferkeit","Name_en":"Blade of Valor","Name_fr":"Lame de vaillance","Name_ja":"ブレード・オブ・ヴァラー","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":25,"SecondaryCostType":58,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/3"},"4":{"ID":4,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":7185,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2ax_emp/ws_s11_hit","Key_en":"ws/bt_2ax_emp/ws_s11_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":7185,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7184,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2ax_emp/ws_s11","Key_en":"ws/bt_2ax_emp/ws_s11","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7184,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":22,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"WAR","Name_de":"KRG","Name_en":"WAR","Name_fr":"GUE","Name_ja":"戦士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":1,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":22,"ClassJobLevel":72,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":16463,"Icon":"/i/002000/002566.png","IconHD":"/i/002000/002566_hr1.png","IconID":2566,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Chaotic Cyclone","Name_de":"Chaosklinge","Name_en":"Chaotic Cyclone","Name_fr":"Cyclone chaotique","Name_ja":"カオティックサイクロン","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":50,"Range":0,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1897,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/4"},"5":{"ID":5,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7186,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2ax_emp/ws_s12","Key_en":"ws/bt_2ax_emp/ws_s12","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7186,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":22,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"WAR","Name_de":"KRG","Name_en":"WAR","Name_fr":"GUE","Name_ja":"戦士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":1,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":22,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":16465,"Icon":"/i/002000/002568.png","IconHD":"/i/002000/002568_hr1.png","IconID":2568,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Inner Chaos","Name_de":"Inneres Chaos","Name_en":"Inner Chaos","Name_fr":"Chaos intérieur","Name_ja":"インナーカオス","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":50,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1897,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/5"},"6":{"ID":6,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":5,"ID":367,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/no_mot_ability","Key_en":"ability/no_mot_ability","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":1,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":0,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":367,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":1,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":98,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DRK","Name_de":"DKR","Name_en":"DRK","Name_fr":"CHN","Name_ja":"暗黒騎士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":98,"ClassJobLevel":86,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":4,"EffectRange":0,"ID":25755,"Icon":"/i/003000/003090.png","IconHD":"/i/003000/003090_hr1.png","IconID":3090,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Salt and Darkness","Name_de":"Salz und Schwärze","Name_en":"Salt and Darkness","Name_fr":"Sel et Ténèbres","Name_ja":"ソルト・アンド・ダーク","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":32,"SecondaryCostValue":749,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/6"},"7":{"ID":7,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":{"ActionCategory":3,"ActionCombo":0,"ActionProcStatus":0,"ActionTimelineHit":1875,"AdditionalCooldownGroup":58,"AffectsPosition":0,"AnimationEnd":6930,"AnimationStart":0,"Aspect":7,"AttackType":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":37,"ClassJobCategory":149,"ClassJobLevel":60,"CooldownGroup":6,"EffectRange":0,"ID":16146,"Icon":"/i/003000/003410.png","IconHD":"/i/003000/003410_hr1.png","IconID":3410,"IsPlayerAction":1,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Gnashing Fang","Name_de":"Schlagfänge","Name_en":"Gnashing Fang","Name_fr":"Croc pugnace","Name_ja":"ビートファング","Omen":0,"PreservesCombo":1,"PrimaryCostType":55,"PrimaryCostValue":1,"Range":"-1","Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":0,"TargetArea":0,"UnlockLink":0,"VFX":0,"XAxisModifier":0},"ActionComboTarget":"Action","ActionComboTargetID":16146,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6932,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2gb_emp/ws_s07","Key_en":"ws/bt_2gb_emp/ws_s07","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6932,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":1,"GSM":0,"ID":149,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"GNB","Name_de":"REV","Name_en":"GNB","Name_fr":"PSB","Name_ja":"ガンブレイカー","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":149,"ClassJobLevel":60,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":16147,"Icon":"/i/003000/003411.png","IconHD":"/i/003000/003411_hr1.png","IconID":3411,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Savage Claw","Name_de":"Wilde Klauen","Name_en":"Savage Claw","Name_fr":"Griffe sauvage","Name_ja":"サベッジクロウ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":15,"SecondaryCostValue":1,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/7"},"8":{"ID":8,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":{"ActionCategory":3,"ActionCombo":16146,"ActionProcStatus":0,"ActionTimelineHit":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":6932,"AnimationStart":0,"Aspect":7,"AttackType":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":0,"ClassJobCategory":149,"ClassJobLevel":60,"CooldownGroup":58,"EffectRange":0,"ID":16147,"Icon":"/i/003000/003411.png","IconHD":"/i/003000/003411_hr1.png","IconID":3411,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Savage Claw","Name_de":"Wilde Klauen","Name_en":"Savage Claw","Name_fr":"Griffe sauvage","Name_ja":"サベッジクロウ","Omen":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":15,"SecondaryCostValue":1,"StatusGainSelf":0,"TargetArea":0,"UnlockLink":0,"VFX":0,"XAxisModifier":0},"ActionComboTarget":"Action","ActionComboTargetID":16147,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6936,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2gb_emp/ws_s09","Key_en":"ws/bt_2gb_emp/ws_s09","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6936,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":1,"GSM":0,"ID":149,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"GNB","Name_de":"REV","Name_en":"GNB","Name_fr":"PSB","Name_ja":"ガンブレイカー","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":149,"ClassJobLevel":60,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":16150,"Icon":"/i/003000/003414.png","IconHD":"/i/003000/003414_hr1.png","IconID":3414,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Wicked Talon","Name_de":"Tückische Kralle","Name_en":"Wicked Talon","Name_fr":"Serre vicieuse","Name_ja":"ウィケッドタロン","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":15,"SecondaryCostValue":2,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/8"},"9":{"ID":9,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":33,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Jugular Rip0101.","Description_de":"F201F6F201F7Kehlreißer0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Jugular Rip0101.","Description_fr":"Arrachage de la jugulaire peut être lancé.","Description_ja":"ジャギュラーリップを実行できる状態。","HitEffect":16,"ID":1842,"Icon":"/i/013000/013611.png","IconHD":"/i/013000/013611_hr1.png","IconID":13611,"InflictedByActor":0,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Ready to Rip","Name_de":"Hungernde Fänge","Name_en":"Ready to Rip","Name_fr":"Arrachage de la jugulaire préparé","Name_ja":"ジャギュラーリップ実行可","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":1842},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":33,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6942,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gb_bgb/abl010","Key_en":"ability/2gb_bgb/abl010","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6942,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":1,"GSM":0,"ID":149,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"GNB","Name_de":"REV","Name_en":"GNB","Name_fr":"PSB","Name_ja":"ガンブレイカー","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":149,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":1,"EffectRange":0,"ID":16156,"Icon":"/i/003000/003420.png","IconHD":"/i/003000/003420_hr1.png","IconID":3420,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Jugular Rip","Name_de":"Kehlreißer","Name_en":"Jugular Rip","Name_fr":"Arrachage de la jugulaire","Name_ja":"ジャギュラーリップ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":1842,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68802,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/9"},"10":{"ID":10,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":34,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Abdomen Tear0101.","Description_de":"F201F6F201F7Bauchschlitzer0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Abdomen Tear0101.","Description_fr":"Lacération de l'abdomen peut être lancée.","Description_ja":"アブドメンテアーを実行できる状態。","HitEffect":16,"ID":1843,"Icon":"/i/013000/013612.png","IconHD":"/i/013000/013612_hr1.png","IconID":13612,"InflictedByActor":0,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Ready to Tear","Name_de":"Geschärfte Klauen","Name_en":"Ready to Tear","Name_fr":"Lacération de l'abdomen préparée","Name_ja":"アブドメンテアー実行可","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":1843},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":34,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6943,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gb_bgb/abl011","Key_en":"ability/2gb_bgb/abl011","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6943,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":1,"GSM":0,"ID":149,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"GNB","Name_de":"REV","Name_en":"GNB","Name_fr":"PSB","Name_ja":"ガンブレイカー","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":149,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":1,"EffectRange":0,"ID":16157,"Icon":"/i/003000/003421.png","IconHD":"/i/003000/003421_hr1.png","IconID":3421,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Abdomen Tear","Name_de":"Bauchschlitzer","Name_en":"Abdomen Tear","Name_fr":"Lacération de l'abdomen","Name_ja":"アブドメンテアー","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":1843,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68802,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/10"},"11":{"ID":11,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":35,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Eye Gouge0101.","Description_de":"F201F6F201F7Augenstecher0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Eye Gouge0101.","Description_fr":"Perforation des yeux peut être lancée.","Description_ja":"アイガウジを実行できる状態。","HitEffect":16,"ID":1844,"Icon":"/i/013000/013613.png","IconHD":"/i/013000/013613_hr1.png","IconID":13613,"InflictedByActor":0,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Ready to Gouge","Name_de":"Blutige Krallen","Name_en":"Ready to Gouge","Name_fr":"Perforation des yeux préparée","Name_ja":"アイガウジ実行可","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":1844},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":35,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6944,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gb_bgb/abl012","Key_en":"ability/2gb_bgb/abl012","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6944,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":1,"GSM":0,"ID":149,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"GNB","Name_de":"REV","Name_en":"GNB","Name_fr":"PSB","Name_ja":"ガンブレイカー","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":149,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":1,"EffectRange":0,"ID":16158,"Icon":"/i/003000/003422.png","IconHD":"/i/003000/003422_hr1.png","IconID":3422,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Eye Gouge","Name_de":"Augenstecher","Name_en":"Eye Gouge","Name_fr":"Perforation des yeux","Name_ja":"アイガウジ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":1844,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68802,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/11"},"12":{"ID":12,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":52,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Hypervelocity0101.","Description_de":"F201F6F201F7Überschall0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Hypervelocity0101.","Description_fr":"Hypervitesse peut être utilisée.","Description_ja":"ハイパーヴェロシティを実行できる状態。","HitEffect":16,"ID":2686,"Icon":"/i/013000/013618.png","IconHD":"/i/013000/013618_hr1.png","IconID":13618,"InflictedByActor":0,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Ready to Blast","Name_de":"Knallender Stoß","Name_en":"Ready to Blast","Name_fr":"Hypervitesse préparée","Name_ja":"ハイパーヴェロシティ実行可","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":2686},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":52,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8202,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2gb_bgb/abl020","Key_en":"ability/2gb_bgb/abl020","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8202,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":1,"GSM":0,"ID":149,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"GNB","Name_de":"REV","Name_en":"GNB","Name_fr":"PSB","Name_ja":"ガンブレイカー","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":149,"ClassJobLevel":86,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":1,"EffectRange":0,"ID":25759,"Icon":"/i/003000/003431.png","IconHD":"/i/003000/003431_hr1.png","IconID":3431,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Hypervelocity","Name_de":"Überschall","Name_en":"Hypervelocity","Name_fr":"Hypervitesse","Name_ja":"ハイパーヴェロシティ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2686,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/12"},"13":{"ID":13,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1888,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/clw_monk/abl007_hit","Key_en":"ability/clw_monk/abl007_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1888,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":341,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_clw_clw/ws_s10","Key_en":"ws/bt_clw_clw/ws_s10","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":341,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":41,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":1,"MRD":0,"NIN":0,"Name":"PGL MNK","Name_de":"FST MÖN","Name_en":"PGL MNK","Name_fr":"PGL MOI","Name_ja":"格闘士 モンク","PGL":1,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":41,"ClassJobLevel":15,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":1,"EffectRange":0,"ID":25761,"Icon":"/i/002000/002530.png","IconHD":"/i/002000/002530_hr1.png","IconID":2530,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Steel Peak","Name_de":"Stahlzinnen","Name_en":"Steel Peak","Name_fr":"Charge d'acier","Name_ja":"鉄山靠","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":28,"PrimaryCostValue":5,"Range":"-1","Recast100ms":10,"SecondaryCostType":122,"SecondaryCostValue":428,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":66094,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/13"},"14":{"ID":14,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3974,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/clw_monk/abl018","Key_en":"ability/clw_monk/abl018","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3974,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":21,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":1,"MRD":0,"NIN":0,"Name":"MNK","Name_de":"MÖN","Name_en":"MNK","Name_fr":"MOI","Name_ja":"モンク","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":21,"ClassJobLevel":54,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":1,"EffectRange":0,"ID":3547,"Icon":"/i/002000/002535.png","IconHD":"/i/002000/002535_hr1.png","IconID":2535,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"the Forbidden Chakra","Name_de":"Verbotenes Chakra","Name_en":"the Forbidden Chakra","Name_fr":"Chakra interdit","Name_ja":"陰陽闘気斬","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":28,"PrimaryCostValue":5,"Range":"-1","Recast100ms":10,"SecondaryCostType":42,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":67564,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/14"},"15":{"ID":15,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":4010,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/clw_monk/abl016_hit","Key_en":"ability/clw_monk/abl016_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":4010,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3967,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/clw_monk/abl016","Key_en":"ability/clw_monk/abl016","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3967,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":21,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":1,"MRD":0,"NIN":0,"Name":"MNK","Name_de":"MÖN","Name_en":"MNK","Name_fr":"MOI","Name_ja":"モンク","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":21,"ClassJobLevel":60,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":3545,"Icon":"/i/002000/002533.png","IconHD":"/i/002000/002533_hr1.png","IconID":2533,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Elixir Field","Name_de":"Elixier-Feld","Name_en":"Elixir Field","Name_fr":"Champ-élixir","Name_ja":"蒼気砲","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":79,"PrimaryCostValue":4,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":67567,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/15"},"16":{"ID":16,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8434,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/clw_monk/abl028","Key_en":"ability/clw_monk/abl028","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8434,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":21,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":1,"MRD":0,"NIN":0,"Name":"MNK","Name_de":"MÖN","Name_en":"MNK","Name_fr":"MOI","Name_ja":"モンク","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":21,"ClassJobLevel":60,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":25882,"Icon":"/i/002000/002548.png","IconHD":"/i/002000/002548_hr1.png","IconID":2548,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Flint Strike","Name_de":"Zündschlag","Name_en":"Flint Strike","Name_fr":"Départ de flammes","Name_ja":"爆裂脚","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":79,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":512,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":67567,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/16"},"17":{"ID":17,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8379,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_clw_clw/ws_s19","Key_en":"ws/bt_clw_clw/ws_s19","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8379,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":21,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":1,"MRD":0,"NIN":0,"Name":"MNK","Name_de":"MÖN","Name_en":"MNK","Name_fr":"MOI","Name_ja":"モンク","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":21,"ClassJobLevel":60,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":25765,"Icon":"/i/002000/002977.png","IconHD":"/i/002000/002977_hr1.png","IconID":2977,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Celestial Revolution","Name_de":"Neuordnung der Himmel","Name_en":"Celestial Revolution","Name_fr":"Révolution céleste","Name_ja":"天宙脚","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":79,"PrimaryCostValue":1,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":67567,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/17"},"18":{"ID":18,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8435,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/clw_monk/abl029","Key_en":"ability/clw_monk/abl029","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8435,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":21,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":1,"MRD":0,"NIN":0,"Name":"MNK","Name_de":"MÖN","Name_en":"MNK","Name_fr":"MOI","Name_ja":"モンク","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":21,"ClassJobLevel":60,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":3543,"Icon":"/i/002000/002531.png","IconHD":"/i/002000/002531_hr1.png","IconID":2531,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Tornado Kick","Name_de":"Tornadotritt","Name_en":"Tornado Kick","Name_fr":"Coup de pied tornade","Name_ja":"闘魂旋風脚","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":79,"PrimaryCostValue":3,"Range":"-1","Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":513,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":67567,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/18"},"19":{"ID":19,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8216,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_clw_clw/ws_s17","Key_en":"ws/bt_clw_clw/ws_s17","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8216,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":1,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":21,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":1,"MRD":0,"NIN":0,"Name":"MNK","Name_de":"MÖN","Name_en":"MNK","Name_fr":"MOI","Name_ja":"モンク","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":21,"ClassJobLevel":86,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":25768,"Icon":"/i/002000/002980.png","IconHD":"/i/002000/002980_hr1.png","IconID":2980,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Rising Phoenix","Name_de":"Phönixtanz","Name_en":"Rising Phoenix","Name_fr":"Danse du Phénix","Name_ja":"鳳凰の舞","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":79,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/19"},"20":{"ID":20,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8217,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_clw_clw/ws_s18","Key_en":"ws/bt_clw_clw/ws_s18","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8217,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":21,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":1,"MRD":0,"NIN":0,"Name":"MNK","Name_de":"MÖN","Name_en":"MNK","Name_fr":"MOI","Name_ja":"モンク","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":21,"ClassJobLevel":90,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":25769,"Icon":"/i/002000/002981.png","IconHD":"/i/002000/002981_hr1.png","IconID":2981,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Phantom Rush","Name_de":"Phantomstoß","Name_en":"Phantom Rush","Name_fr":"Rixe évanescente","Name_ja":"夢幻闘舞","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":79,"PrimaryCostValue":3,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/20"},"21":{"ID":21,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":13,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Mirage Dive0101.","Description_de":"F201F6F201F7Illusionssprung0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Mirage Dive0101.","Description_fr":"Piqué mirage peut être utilisé.","Description_ja":"ミラージュダイブを実行できる状態。","HitEffect":16,"ID":1243,"Icon":"/i/012000/012583.png","IconHD":"/i/012000/012583_hr1.png","IconID":12583,"InflictedByActor":0,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Dive Ready","Name_de":"Sprungbereit","Name_en":"Dive Ready","Name_fr":"Piqué mirage préparé","Name_ja":"ミラージュダイブ実行可","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":1243},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":13,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5206,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2sp_dragoon/abl017","Key_en":"ability/2sp_dragoon/abl017","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5206,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":1,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":23,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DRG","Name_de":"DRG","Name_en":"DRG","Name_fr":"DRG","Name_ja":"竜騎士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":23,"ClassJobLevel":68,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":1,"EffectRange":0,"ID":7399,"Icon":"/i/002000/002588.png","IconHD":"/i/002000/002588_hr1.png","IconID":2588,"IsPlayerAction":1,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Mirage Dive","Name_de":"Illusionssprung","Name_en":"Mirage Dive","Name_fr":"Piqué mirage","Name_ja":"ミラージュダイブ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":10,"SecondaryCostType":32,"SecondaryCostValue":1243,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/21"},"22":{"ID":22,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":5208,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2sp_dragoon/abl018_hit","Key_en":"ability/2sp_dragoon/abl018_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":5208,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5207,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2sp_dragoon/abl018","Key_en":"ability/2sp_dragoon/abl018","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5207,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":4,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":1,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":23,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DRG","Name_de":"DRG","Name_en":"DRG","Name_fr":"DRG","Name_ja":"竜騎士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":23,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":3,"EffectRange":15,"ID":7400,"Icon":"/i/002000/002589.png","IconHD":"/i/002000/002589_hr1.png","IconID":2589,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Nastrond","Name_de":"Nastrond","Name_en":"Nastrond","Name_fr":"Naströnd","Name_ja":"ナーストレンド","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":100,"SecondaryCostType":76,"SecondaryCostValue":2,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68450,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":4},"Url":"/ActionIndirection/22"},"23":{"ID":23,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":32,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Raiden Thrust0101 and F201F4F201F5Draconian Fury0101.","Description_de":"F201F6F201F7Überfallsstoß0101 und F201F6F201F7Groll des Drachen0101 könnenF201F6F201F7Überfallsstoß0101 kannF201F6F201F7Überfallsstoß0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Raiden Thrust0101 and F201F4F201F5Draconian Fury0101.","Description_fr":"Percée Raiden et Fureur du dragon peuvent être lancées.Percée Raiden peut être lancée.Percée Raiden peut être lancée.","Description_ja":"竜眼雷電および竜眼蒼穹を実行できる状態。","HitEffect":16,"ID":1863,"Icon":"/i/012000/012585.png","IconHD":"/i/012000/012585_hr1.png","IconID":12585,"InflictedByActor":0,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Draconian Fire","Name_de":"Zornesfeuer","Name_en":"Draconian Fire","Name_fr":"Feu des dragons","Name_ja":"竜眼","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":1863},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":32,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7049,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2sp_emp/ws_s13","Key_en":"ws/bt_2sp_emp/ws_s13","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7049,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":1,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":23,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DRG","Name_de":"DRG","Name_en":"DRG","Name_fr":"DRG","Name_ja":"竜騎士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":23,"ClassJobLevel":76,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":16479,"Icon":"/i/002000/002592.png","IconHD":"/i/002000/002592_hr1.png","IconID":2592,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Raiden Thrust","Name_de":"Überfallsstoß","Name_en":"Raiden Thrust","Name_fr":"Percée Raiden","Name_ja":"竜眼雷電","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1863,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/23"},"24":{"ID":24,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":32,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Raiden Thrust0101 and F201F4F201F5Draconian Fury0101.","Description_de":"F201F6F201F7Überfallsstoß0101 und F201F6F201F7Groll des Drachen0101 könnenF201F6F201F7Überfallsstoß0101 kannF201F6F201F7Überfallsstoß0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Raiden Thrust0101 and F201F4F201F5Draconian Fury0101.","Description_fr":"Percée Raiden et Fureur du dragon peuvent être lancées.Percée Raiden peut être lancée.Percée Raiden peut être lancée.","Description_ja":"竜眼雷電および竜眼蒼穹を実行できる状態。","HitEffect":16,"ID":1863,"Icon":"/i/012000/012585.png","IconHD":"/i/012000/012585_hr1.png","IconID":12585,"InflictedByActor":0,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Draconian Fire","Name_de":"Zornesfeuer","Name_en":"Draconian Fire","Name_fr":"Feu des dragons","Name_ja":"竜眼","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":1863},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":32,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8218,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2sp_emp/ws_s17","Key_en":"ws/bt_2sp_emp/ws_s17","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8218,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":4,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":1,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":23,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DRG","Name_de":"DRG","Name_en":"DRG","Name_fr":"DRG","Name_ja":"竜騎士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":23,"ClassJobLevel":82,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":10,"ID":25770,"Icon":"/i/002000/002594.png","IconHD":"/i/002000/002594_hr1.png","IconID":2594,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Draconian Fury","Name_de":"Groll des Drachen","Name_en":"Draconian Fury","Name_fr":"Fureur du dragon","Name_ja":"竜眼蒼穹","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":10,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1863,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":4},"Url":"/ActionIndirection/24"},"25":{"ID":25,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":567,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/dgr_ninja/kuchiyose","Key_en":"magic/dgr_ninja/kuchiyose","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":567,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":30,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":2272,"Icon":"/i/002000/002914.png","IconHD":"/i/002000/002914_hr1.png","IconID":2914,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Rabbit Medium","Name_de":"Hasenmedium","Name_en":"Rabbit Medium","Name_fr":"Kuchiyose","Name_ja":"口寄せの術","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":0,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":65748,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/25"},"26":{"ID":26,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":560,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/dgr_ninja/syuriken","Key_en":"magic/dgr_ninja/syuriken","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":2,"Type":0,"WeaponTimeline":{"File":"weapon/normal_idle","File_en":"weapon/normal_idle","ID":2,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":2},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":560,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":30,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":2265,"Icon":"/i/002000/002907.png","IconHD":"/i/002000/002907_hr1.png","IconID":2907,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Fuma Shuriken","Name_de":"Fuma Shuriken","Name_en":"Fuma Shuriken","Name_fr":"Fûma Shuriken","Name_ja":"風魔手裏剣","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":25,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":65748,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/26"},"27":{"ID":27,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":561,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/dgr_ninja/katon","Key_en":"magic/dgr_ninja/katon","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":561,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":1,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":35,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":2266,"Icon":"/i/002000/002908.png","IconHD":"/i/002000/002908_hr1.png","IconID":2908,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Katon","Name_de":"Katon","Name_en":"Katon","Name_fr":"Katon","Name_ja":"火遁の術","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":20,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":65750,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/27"},"28":{"ID":28,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":562,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/dgr_ninja/raiton","Key_en":"magic/dgr_ninja/raiton","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":562,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":5,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":35,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":2267,"Icon":"/i/002000/002912.png","IconHD":"/i/002000/002912_hr1.png","IconID":2912,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Raiton","Name_de":"Raiton","Name_en":"Raiton","Name_fr":"Raiton","Name_ja":"雷遁の術","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":20,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":65750,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/28"},"29":{"ID":29,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":566,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/dgr_ninja/hyoton","Key_en":"magic/dgr_ninja/hyoton","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":566,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":2,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":45,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":2268,"Icon":"/i/002000/002909.png","IconHD":"/i/002000/002909_hr1.png","IconID":2909,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Hyoton","Name_de":"Hyoton","Name_en":"Hyoton","Name_fr":"Hyôton","Name_ja":"氷遁の術","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":25,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":65768,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/29"},"30":{"ID":30,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":563,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/dgr_ninja/fuuton","Key_en":"magic/dgr_ninja/fuuton","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":563,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":45,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":2269,"Icon":"/i/002000/002910.png","IconHD":"/i/002000/002910_hr1.png","IconID":2910,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Huton","Name_de":"Huton","Name_en":"Huton","Name_fr":"Fûton","Name_ja":"風遁の術","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":0,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":65768,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/30"},"31":{"ID":31,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":564,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/dgr_ninja/doton","Key_en":"magic/dgr_ninja/doton","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":564,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":4,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":7,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":45,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":2270,"Icon":"/i/002000/002911.png","IconHD":"/i/002000/002911_hr1.png","IconID":2911,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Doton","Name_de":"Doton","Name_en":"Doton","Name_fr":"Doton","Name_ja":"土遁の術","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":0,"Recast100ms":15,"SecondaryCostType":33,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":65768,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/31"},"32":{"ID":32,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":565,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/dgr_ninja/suiton","Key_en":"magic/dgr_ninja/suiton","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":565,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":6,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":45,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":2271,"Icon":"/i/002000/002913.png","IconHD":"/i/002000/002913_hr1.png","IconID":2913,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Suiton","Name_de":"Suiton","Name_en":"Suiton","Name_fr":"Suiton","Name_ja":"水遁の術","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":20,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":65768,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/32"},"33":{"ID":33,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":7056,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/dgr_ninja/abl027_hit","Key_en":"ability/dgr_ninja/abl027_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":7056,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7055,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/dgr_ninja/abl027","Key_en":"ability/dgr_ninja/abl027","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7055,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":1,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":76,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":16491,"Icon":"/i/002000/002925.png","IconHD":"/i/002000/002925_hr1.png","IconID":2925,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Goka Mekkyaku","Name_de":"Goka Mekkyaku","Name_en":"Goka Mekkyaku","Name_fr":"Gôka Mekkyaku","Name_ja":"劫火滅却の術","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":20,"Recast100ms":15,"SecondaryCostType":32,"SecondaryCostValue":497,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/33"},"34":{"ID":34,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7057,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/dgr_ninja/abl028","Key_en":"ability/dgr_ninja/abl028","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7057,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":2,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":76,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":16492,"Icon":"/i/002000/002926.png","IconHD":"/i/002000/002926_hr1.png","IconID":2926,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Hyosho Ranryu","Name_de":"Hyosho Ranryu","Name_en":"Hyosho Ranryu","Name_fr":"Hyôshô Ranryû","Name_ja":"氷晶乱流の術","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":25,"Recast100ms":15,"SecondaryCostType":32,"SecondaryCostValue":497,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/34"},"35":{"ID":35,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8254,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/dgr_ninja/abl030","Key_en":"ability/dgr_ninja/abl030","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8254,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":82,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":25774,"Icon":"/i/002000/002929.png","IconHD":"/i/002000/002929_hr1.png","IconID":2929,"IsPlayerAction":1,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Phantom Kamaitachi","Name_de":"Phantom-Kamaitachi","Name_en":"Phantom Kamaitachi","Name_fr":"Kamaitachi fantôme","Name_ja":"残影鎌鼬","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":2723,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/35"},"36":{"ID":36,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8256,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_dgr_dgr/ws_s12","Key_en":"ws/bt_dgr_dgr/ws_s12","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":1,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8256,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":4,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":0,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":92,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":1,"Name":"NIN","Name_de":"NIN","Name_en":"NIN","Name_fr":"NIN","Name_ja":"忍者","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":92,"ClassJobLevel":86,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":0,"EffectRange":5,"ID":25776,"Icon":"/i/002000/002930.png","IconHD":"/i/002000/002930_hr1.png","IconID":2930,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Hollow Nozuchi","Name_de":"Nozuchi-Schemen","Name_en":"Hollow Nozuchi","Name_fr":"Nozuchi spectral","Name_ja":"幻影野槌","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":100,"Recast100ms":0,"SecondaryCostType":32,"SecondaryCostValue":501,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":1,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/36"},"37":{"ID":37,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5120,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2kt_samrai/mgc003","Key_en":"magic/2kt_samrai/mgc003","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":6,"Type":0,"WeaponTimeline":{"File":"weapon/normal_idle","File_en":"weapon/normal_idle","ID":2,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":2},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5120,"AnimationStart":{"ID":43,"Name":{"ActionTimelineIDMode":0,"ID":5116,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sam_start","Key_en":"battle/magic_sam_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":5116,"VFX":null,"VFXTarget":"VFX","VFXTargetID":0},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":43,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":18,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":111,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SAM","Name_de":"SAM","Name_en":"SAM","Name_fr":"SAM","Name_ja":"侍","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":1,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":111,"ClassJobLevel":30,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":7489,"Icon":"/i/003000/003160.png","IconHD":"/i/003000/003160_hr1.png","IconID":3160,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Higanbana","Name_de":"Higanbana","Name_en":"Higanbana","Name_fr":"Higanbana","Name_ja":"彼岸花","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":40,"PrimaryCostValue":0,"Range":6,"Recast100ms":25,"SecondaryCostType":72,"SecondaryCostValue":1,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":40,"VFX":{"ID":138,"Location":"cmsa_castx0t","Location_en":"cmsa_castx0t"},"VFXTarget":"VFX","VFXTargetID":138},"VFXTarget":"ActionCastVFX","VFXTargetID":40,"XAxisModifier":0},"Url":"/ActionIndirection/37"},"38":{"ID":38,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":5274,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2kt_samrai/mgc002_hit","Key_en":"magic/2kt_samrai/mgc002_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":5274,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":11590,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2kt_samrai/mgc010","Key_en":"magic/2kt_samrai/mgc010","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/normal_idle","File_en":"weapon/normal_idle","ID":2,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":2},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":11590,"AnimationStart":{"ID":43,"Name":{"ActionTimelineIDMode":0,"ID":5116,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sam_start","Key_en":"battle/magic_sam_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":5116,"VFX":null,"VFXTarget":"VFX","VFXTargetID":0},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":43,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":18,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":111,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SAM","Name_de":"SAM","Name_en":"SAM","Name_fr":"SAM","Name_ja":"侍","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":1,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":111,"ClassJobLevel":40,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":7488,"Icon":"/i/003000/003161.png","IconHD":"/i/003000/003161_hr1.png","IconID":3161,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Tenka Goken","Name_de":"Tenka Goken","Name_en":"Tenka Goken","Name_fr":"Tenka Goken","Name_ja":"天下五剣","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":40,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":72,"SecondaryCostValue":2,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":40,"VFX":{"ID":138,"Location":"cmsa_castx0t","Location_en":"cmsa_castx0t"},"VFXTarget":"VFX","VFXTargetID":138},"VFXTarget":"ActionCastVFX","VFXTargetID":40,"XAxisModifier":0},"Url":"/ActionIndirection/38"},"39":{"ID":39,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5118,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2kt_samrai/mgc001","Key_en":"magic/2kt_samrai/mgc001","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/normal_idle","File_en":"weapon/normal_idle","ID":2,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":2},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5118,"AnimationStart":{"ID":43,"Name":{"ActionTimelineIDMode":0,"ID":5116,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sam_start","Key_en":"battle/magic_sam_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":5116,"VFX":null,"VFXTarget":"VFX","VFXTargetID":0},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":43,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":18,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":111,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SAM","Name_de":"SAM","Name_en":"SAM","Name_fr":"SAM","Name_ja":"侍","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":1,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":111,"ClassJobLevel":50,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":7487,"Icon":"/i/003000/003162.png","IconHD":"/i/003000/003162_hr1.png","IconID":3162,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Midare Setsugekka","Name_de":"Midare Setsugekka","Name_en":"Midare Setsugekka","Name_fr":"Midare Setsugekka","Name_ja":"乱れ雪月花","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":40,"PrimaryCostValue":0,"Range":6,"Recast100ms":25,"SecondaryCostType":72,"SecondaryCostValue":3,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":48,"VFX":{"ID":515,"Location":"mgc_2kt001c1t","Location_en":"mgc_2kt001c1t"},"VFXTarget":"VFX","VFXTargetID":515},"VFXTarget":"ActionCastVFX","VFXTargetID":48,"XAxisModifier":0},"Url":"/ActionIndirection/39"},"40":{"ID":40,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":58,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7060,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2kt_samrai/mgc007","Key_en":"magic/2kt_samrai/mgc007","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/normal_idle","File_en":"weapon/normal_idle","ID":2,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":2},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7060,"AnimationStart":{"ID":43,"Name":{"ActionTimelineIDMode":0,"ID":5116,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sam_start","Key_en":"battle/magic_sam_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":5116,"VFX":null,"VFXTarget":"VFX","VFXTargetID":0},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":43,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":111,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SAM","Name_de":"SAM","Name_en":"SAM","Name_fr":"SAM","Name_ja":"侍","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":1,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":111,"ClassJobLevel":76,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":11,"EffectRange":0,"ID":16484,"Icon":"/i/003000/003181.png","IconHD":"/i/003000/003181_hr1.png","IconID":3181,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":1,"Name":"Kaeshi: Higanbana","Name_de":"Kaeshi Higanbana","Name_en":"Kaeshi: Higanbana","Name_fr":"Kaeshi Higanbana","Name_ja":"返し彼岸花","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":6,"Recast100ms":600,"SecondaryCostType":14,"SecondaryCostValue":1,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":40,"VFX":{"ID":138,"Location":"cmsa_castx0t","Location_en":"cmsa_castx0t"},"VFXTarget":"VFX","VFXTargetID":138},"VFXTarget":"ActionCastVFX","VFXTargetID":40,"XAxisModifier":0},"Url":"/ActionIndirection/40"},"41":{"ID":41,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":5274,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2kt_samrai/mgc002_hit","Key_en":"magic/2kt_samrai/mgc002_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":5274,"AdditionalCooldownGroup":58,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":11590,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2kt_samrai/mgc010","Key_en":"magic/2kt_samrai/mgc010","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/normal_idle","File_en":"weapon/normal_idle","ID":2,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":2},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":11590,"AnimationStart":{"ID":43,"Name":{"ActionTimelineIDMode":0,"ID":5116,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sam_start","Key_en":"battle/magic_sam_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":5116,"VFX":null,"VFXTarget":"VFX","VFXTargetID":0},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":43,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":111,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SAM","Name_de":"SAM","Name_en":"SAM","Name_fr":"SAM","Name_ja":"侍","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":1,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":111,"ClassJobLevel":76,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":11,"EffectRange":5,"ID":16485,"Icon":"/i/003000/003182.png","IconHD":"/i/003000/003182_hr1.png","IconID":3182,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":1,"Name":"Kaeshi: Goken","Name_de":"Kaeshi Goken","Name_en":"Kaeshi: Goken","Name_fr":"Kaeshi Goken","Name_ja":"返し五剣","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":14,"SecondaryCostValue":2,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":40,"VFX":{"ID":138,"Location":"cmsa_castx0t","Location_en":"cmsa_castx0t"},"VFXTarget":"VFX","VFXTargetID":138},"VFXTarget":"ActionCastVFX","VFXTargetID":40,"XAxisModifier":0},"Url":"/ActionIndirection/41"},"42":{"ID":42,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":58,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7059,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2kt_samrai/mgc006","Key_en":"magic/2kt_samrai/mgc006","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/normal_idle","File_en":"weapon/normal_idle","ID":2,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":2},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7059,"AnimationStart":{"ID":43,"Name":{"ActionTimelineIDMode":0,"ID":5116,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sam_start","Key_en":"battle/magic_sam_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":5116,"VFX":null,"VFXTarget":"VFX","VFXTargetID":0},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":43,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":111,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SAM","Name_de":"SAM","Name_en":"SAM","Name_fr":"SAM","Name_ja":"侍","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":1,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":111,"ClassJobLevel":76,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":11,"EffectRange":0,"ID":16486,"Icon":"/i/003000/003183.png","IconHD":"/i/003000/003183_hr1.png","IconID":3183,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":1,"Name":"Kaeshi: Setsugekka","Name_de":"Kaeshi Setsugekka","Name_en":"Kaeshi: Setsugekka","Name_fr":"Kaeshi Setsugekka","Name_ja":"返し雪月花","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":6,"Recast100ms":600,"SecondaryCostType":14,"SecondaryCostValue":3,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":48,"VFX":{"ID":515,"Location":"mgc_2kt001c1t","Location_en":"mgc_2kt001c1t"},"VFXTarget":"VFX","VFXTargetID":515},"VFXTarget":"ActionCastVFX","VFXTargetID":48,"XAxisModifier":0},"Url":"/ActionIndirection/42"},"43":{"ID":43,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":58,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8226,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2kt_samrai/mgc009","Key_en":"magic/2kt_samrai/mgc009","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/normal_idle","File_en":"weapon/normal_idle","ID":2,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":2},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8226,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":3,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":111,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SAM","Name_de":"SAM","Name_en":"SAM","Name_fr":"SAM","Name_ja":"侍","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":1,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":111,"ClassJobLevel":90,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":3,"EffectRange":8,"ID":25782,"Icon":"/i/003000/003188.png","IconHD":"/i/003000/003188_hr1.png","IconID":3188,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Kaeshi: Namikiri","Name_de":"Kaeshi Namikiri","Name_en":"Kaeshi: Namikiri","Name_fr":"Kaeshi Namikiri","Name_ja":"返し波切","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":8,"Recast100ms":10,"SecondaryCostType":14,"SecondaryCostValue":4,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/43"},"44":{"ID":44,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8369,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2km_reaper/abl011","Key_en":"ability/2km_reaper/abl011","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8369,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":1,"Name":"斬","Name_de":"斬","Name_en":"斬","Name_fr":"tranchant","Name_ja":"斬"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":1,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":180,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"RPR","Name_de":"SNT","Name_en":"RPR","Name_fr":"FCH","Name_ja":"リーパー","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":1,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":180,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":1,"EffectRange":0,"ID":24390,"Icon":"/i/003000/003618.png","IconHD":"/i/003000/003618_hr1.png","IconID":3618,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Unveiled Gibbet","Name_de":"Richtergriff","Name_en":"Unveiled Gibbet","Name_fr":"Gibet suppliciant","Name_ja":"ジビトゥクロウ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":64,"PrimaryCostValue":50,"Range":"-1","Recast100ms":10,"SecondaryCostType":113,"SecondaryCostValue":2588,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/44"},"45":{"ID":45,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8370,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2km_reaper/abl012","Key_en":"ability/2km_reaper/abl012","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8370,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":1,"Name":"斬","Name_de":"斬","Name_en":"斬","Name_fr":"tranchant","Name_ja":"斬"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":1,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":180,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"RPR","Name_de":"SNT","Name_en":"RPR","Name_fr":"FCH","Name_ja":"リーパー","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":1,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":180,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":1,"EffectRange":0,"ID":24391,"Icon":"/i/003000/003619.png","IconHD":"/i/003000/003619_hr1.png","IconID":3619,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Unveiled Gallows","Name_de":"Galgengriff","Name_en":"Unveiled Gallows","Name_fr":"Potence suppliciante","Name_ja":"ギャロウズクロウ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":64,"PrimaryCostValue":50,"Range":"-1","Recast100ms":10,"SecondaryCostType":113,"SecondaryCostValue":2589,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/45"},"46":{"ID":46,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":47,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Regress0101.","Description_de":"F201F6F201F7Rückkehr0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Regress0101.","Description_fr":"Repli peut être lancé.","Description_ja":"リターンを実行できる状態。","HitEffect":0,"ID":2595,"Icon":"/i/012000/012933.png","IconHD":"/i/012000/012933_hr1.png","IconID":12933,"InflictedByActor":0,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Threshold","Name_de":"Rückkehr möglich","Name_en":"Threshold","Name_fr":"Repli préparé","Name_ja":"リターン実行可","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":2595},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":47,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":1,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8362,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2km_reaper/abl008","Key_en":"ability/2km_reaper/abl008","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8362,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":1,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":7,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":180,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"RPR","Name_de":"SNT","Name_en":"RPR","Name_fr":"FCH","Name_ja":"リーパー","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":1,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":180,"ClassJobLevel":74,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":2,"EffectRange":0,"ID":24403,"Icon":"/i/003000/003631.png","IconHD":"/i/003000/003631_hr1.png","IconID":3631,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Regress","Name_de":"Rückkehr","Name_en":"Regress","Name_fr":"Repli","Name_ja":"リターン","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2595,"Range":30,"Recast100ms":100,"SecondaryCostType":114,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":1,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/46"},"47":{"ID":47,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":47,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Regress0101.","Description_de":"F201F6F201F7Rückkehr0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Regress0101.","Description_fr":"Repli peut être lancé.","Description_ja":"リターンを実行できる状態。","HitEffect":0,"ID":2595,"Icon":"/i/012000/012933.png","IconHD":"/i/012000/012933_hr1.png","IconID":12933,"InflictedByActor":0,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Threshold","Name_de":"Rückkehr möglich","Name_en":"Threshold","Name_fr":"Repli préparé","Name_ja":"リターン実行可","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":2595},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":47,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":1,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8362,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2km_reaper/abl008","Key_en":"ability/2km_reaper/abl008","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8362,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":1,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":7,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":180,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"RPR","Name_de":"SNT","Name_en":"RPR","Name_fr":"FCH","Name_ja":"リーパー","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":1,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":180,"ClassJobLevel":74,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":2,"EffectRange":0,"ID":24403,"Icon":"/i/003000/003631.png","IconHD":"/i/003000/003631_hr1.png","IconID":3631,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Regress","Name_de":"Rückkehr","Name_en":"Regress","Name_fr":"Repli","Name_ja":"リターン","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2595,"Range":30,"Recast100ms":100,"SecondaryCostType":114,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":1,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/47"},"48":{"ID":48,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8355,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2km_emp/ws_s13","Key_en":"ws/bt_2km_emp/ws_s13","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8355,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":1,"Name":"斬","Name_de":"斬","Name_en":"斬","Name_fr":"tranchant","Name_ja":"斬"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":1,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":180,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"RPR","Name_de":"SNT","Name_en":"RPR","Name_fr":"FCH","Name_ja":"リーパー","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":1,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":180,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":24395,"Icon":"/i/003000/003623.png","IconHD":"/i/003000/003623_hr1.png","IconID":3623,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Void Reaping","Name_de":"Nichtsmäher","Name_en":"Void Reaping","Name_fr":"Fauchage du néant","Name_ja":"ヴォイドリーパー","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":66,"PrimaryCostValue":1,"Range":"-1","Recast100ms":25,"SecondaryCostType":112,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":69614,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/48"},"49":{"ID":49,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8356,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2km_emp/ws_s14","Key_en":"ws/bt_2km_emp/ws_s14","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8356,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":1,"Name":"斬","Name_de":"斬","Name_en":"斬","Name_fr":"tranchant","Name_ja":"斬"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":1,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":180,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"RPR","Name_de":"SNT","Name_en":"RPR","Name_fr":"FCH","Name_ja":"リーパー","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":1,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":180,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":24396,"Icon":"/i/003000/003624.png","IconHD":"/i/003000/003624_hr1.png","IconID":3624,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Cross Reaping","Name_de":"Kreuzmäher","Name_en":"Cross Reaping","Name_fr":"Fauchage croisé","Name_ja":"クロスリーパー","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":66,"PrimaryCostValue":1,"Range":"-1","Recast100ms":25,"SecondaryCostType":112,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":69614,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/49"},"50":{"ID":50,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8357,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2km_emp/ws_s15","Key_en":"ws/bt_2km_emp/ws_s15","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8357,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":1,"Name":"斬","Name_de":"斬","Name_en":"斬","Name_fr":"tranchant","Name_ja":"斬"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":1,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":3,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":180,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"RPR","Name_de":"SNT","Name_en":"RPR","Name_fr":"FCH","Name_ja":"リーパー","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":1,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":180,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":8,"ID":24397,"Icon":"/i/003000/003625.png","IconHD":"/i/003000/003625_hr1.png","IconID":3625,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Grim Reaping","Name_de":"Gevatters Schnitt","Name_en":"Grim Reaping","Name_fr":"Fauchage sinistre","Name_ja":"グリムリーパー","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":66,"PrimaryCostValue":1,"Range":8,"Recast100ms":25,"SecondaryCostType":112,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":69614,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/50"},"51":{"ID":51,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":57,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Harvest Moon0101.","Description_de":"F201F6F201F7Erntemond0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Harvest Moon0101.","Description_fr":"Lune des moissons peut être lancée.","Description_ja":"ハーベストムーンを実行できる状態。","HitEffect":16,"ID":2594,"Icon":"/i/012000/012932.png","IconHD":"/i/012000/012932_hr1.png","IconID":12932,"InflictedByActor":1,"Invisibility":0,"IsFcBuff":0,"IsPermanent":1,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Soulsow","Name_de":"Seelensaat","Name_en":"Soulsow","Name_fr":"Semence d'âmes","Name_ja":"ソウルソウ","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":2594},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":57,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8368,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/2km_riaper/mgc004","Key_en":"magic/2km_riaper/mgc004","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8368,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":180,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"RPR","Name_de":"SNT","Name_en":"RPR","Name_fr":"FCH","Name_ja":"リーパー","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":1,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":180,"ClassJobLevel":82,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":24388,"Icon":"/i/003000/003616.png","IconHD":"/i/003000/003616_hr1.png","IconID":3616,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Harvest Moon","Name_de":"Erntemond","Name_en":"Harvest Moon","Name_fr":"Lune des moissons","Name_ja":"ハーベストムーン","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2594,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/51"},"52":{"ID":52,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8358,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2km_reaper/abl005","Key_en":"ability/2km_reaper/abl005","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8358,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":1,"Name":"斬","Name_de":"斬","Name_en":"斬","Name_fr":"tranchant","Name_ja":"斬"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":1,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":180,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"RPR","Name_de":"SNT","Name_en":"RPR","Name_fr":"FCH","Name_ja":"リーパー","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":1,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":180,"ClassJobLevel":86,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":1,"EffectRange":0,"ID":24399,"Icon":"/i/003000/003627.png","IconHD":"/i/003000/003627_hr1.png","IconID":3627,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Lemure's Slice","Name_de":"Lemurenschlitzer","Name_en":"Lemure's Slice","Name_fr":"Tranchage du lémure","Name_ja":"レムールスライス","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":67,"PrimaryCostValue":2,"Range":"-1","Recast100ms":10,"SecondaryCostType":112,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/52"},"53":{"ID":53,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8359,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2km_reaper/abl006","Key_en":"ability/2km_reaper/abl006","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8359,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":1,"Name":"斬","Name_de":"斬","Name_en":"斬","Name_fr":"tranchant","Name_ja":"斬"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":1,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":3,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":180,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"RPR","Name_de":"SNT","Name_en":"RPR","Name_fr":"FCH","Name_ja":"リーパー","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":1,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":180,"ClassJobLevel":86,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":1,"EffectRange":8,"ID":24400,"Icon":"/i/003000/003628.png","IconHD":"/i/003000/003628_hr1.png","IconID":3628,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Lemure's Scythe","Name_de":"Lemurensense","Name_en":"Lemure's Scythe","Name_fr":"Faux du lémure","Name_ja":"レムールサイズ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":67,"PrimaryCostValue":2,"Range":8,"Recast100ms":10,"SecondaryCostType":112,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/53"},"54":{"ID":54,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5219,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/2bw_bard/abl015","Key_en":"ability/2bw_bard/abl015","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5219,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":1,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":24,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"BRD","Name_de":"BRD","Name_en":"BRD","Name_fr":"BRD","Name_ja":"吟遊詩人","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":24,"ClassJobLevel":52,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":1,"EffectRange":0,"ID":7404,"Icon":"/i/002000/002611.png","IconHD":"/i/002000/002611_hr1.png","IconID":2611,"IsPlayerAction":1,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Pitch Perfect","Name_de":"Absolutes Gehör","Name_en":"Pitch Perfect","Name_fr":"Ton parfait","Name_ja":"ピッチパーフェクト","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":32,"PrimaryCostValue":1,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/54"},"55":{"ID":55,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":53,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Blast Arrow0101.","Description_de":"F201F6F201F7Stoßpfeil0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Blast Arrow0101.","Description_fr":"Flèche explosive peut être lancée.","Description_ja":"ブラストアローを実行できる状態。","HitEffect":16,"ID":2692,"Icon":"/i/012000/012621.png","IconHD":"/i/012000/012621_hr1.png","IconID":12621,"InflictedByActor":0,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Blast Arrow Ready","Name_de":"Stoßpfeilbereit","Name_en":"Blast Arrow Ready","Name_fr":"Flèche explosive préparée","Name_ja":"ブラストアロー実行可","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":2692},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":53,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8252,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_2bw_emp/ws_s18","Key_en":"ws/bt_2bw_emp/ws_s18","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8252,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":4,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":1,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":24,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"BRD","Name_de":"BRD","Name_en":"BRD","Name_fr":"BRD","Name_ja":"吟遊詩人","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":24,"ClassJobLevel":86,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":25,"ID":25784,"Icon":"/i/002000/002621.png","IconHD":"/i/002000/002621_hr1.png","IconID":2621,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Blast Arrow","Name_de":"Stoßpfeil","Name_en":"Blast Arrow","Name_fr":"Flèche explosive","Name_ja":"ブラストアロー","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":10,"PrimaryCostValue":2692,"Range":25,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":2692,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":4},"Url":"/ActionIndirection/55"},"56":{"ID":56,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":4573,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/hide/mon_sp001","Key_en":"mon_sp/[SKL_ID]/hide/mon_sp001","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":4573,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":2,"Name":"突","Name_de":"突","Name_en":"突","Name_fr":"perforant","Name_ja":"突"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":2,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":96,"LNC":0,"LTW":0,"MCH":1,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"MCH","Name_de":"MCH","Name_en":"MCH","Name_fr":"MCH","Name_ja":"機工士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":96,"ClassJobLevel":40,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":0,"EffectRange":0,"ID":7416,"Icon":"/i/003000/003036.png","IconHD":"/i/003000/003036_hr1.png","IconID":3036,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Rook Overload","Name_de":"TURM-Überladung","Name_en":"Rook Overload","Name_fr":"Surcharge de Tour","Name_ja":"オーバーロード・ルーク","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":2,"PrimaryCostValue":0,"Range":40,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/56"},"57":{"ID":57,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":5232,"IsLoop":2,"IsMotionCanceledByMoving":0,"Key":"ability/2gn_machin/abl024","Key_en":"ability/2gn_machin/abl024","KillUpper":0,"LoadType":1,"LookAtMode":2,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":1,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":5232,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":96,"LNC":0,"LTW":0,"MCH":1,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"MCH","Name_de":"MCH","Name_en":"MCH","Name_fr":"MCH","Name_ja":"機工士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":96,"ClassJobLevel":45,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":1,"EffectRange":0,"ID":16766,"Icon":"/i/003000/003039.png","IconHD":"/i/003000/003039_hr1.png","IconID":3039,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Detonator","Name_de":"Detonator","Name_en":"Detonator","Name_fr":"Détonateur","Name_ja":"デトネーター","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":10,"SecondaryCostType":32,"SecondaryCostValue":1946,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/57"},"58":{"ID":58,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3201,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp001","Key_en":"mon_sp/[SKL_ID]/mon_sp001","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3201,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":3,"Name":"打","Name_de":"打","Name_en":"打","Name_fr":"contondant","Name_ja":"打"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":3,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":96,"LNC":0,"LTW":0,"MCH":1,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"MCH","Name_de":"MCH","Name_en":"MCH","Name_fr":"MCH","Name_ja":"機工士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":96,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":58,"EffectRange":0,"ID":16504,"Icon":"/i/003000/003504.png","IconHD":"/i/003000/003504_hr1.png","IconID":3504,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Arm Punch","Name_de":"Eiserne Faust","Name_en":"Arm Punch","Name_fr":"Coup de poing","Name_ja":"クイーン・アームパンチ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":3,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/58"},"59":{"ID":59,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3203,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp003","Key_en":"mon_sp/[SKL_ID]/mon_sp003","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3203,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":3,"Name":"打","Name_de":"打","Name_en":"打","Name_fr":"contondant","Name_ja":"打"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":3,"BehaviourType":1,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":96,"LNC":0,"LTW":0,"MCH":1,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"MCH","Name_de":"MCH","Name_en":"MCH","Name_fr":"MCH","Name_ja":"機工士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":96,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":58,"EffectRange":0,"ID":17206,"Icon":"/i/003000/003505.png","IconHD":"/i/003000/003505_hr1.png","IconID":3505,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Roller Dash","Name_de":"Rollender Ansturm","Name_en":"Roller Dash","Name_fr":"Roues véloces","Name_ja":"クイーン・ローラーダッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":30,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/59"},"60":{"ID":60,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3202,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp002","Key_en":"mon_sp/[SKL_ID]/mon_sp002","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3202,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":3,"Name":"打","Name_de":"打","Name_en":"打","Name_fr":"contondant","Name_ja":"打"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":3,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":96,"LNC":0,"LTW":0,"MCH":1,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"MCH","Name_de":"MCH","Name_en":"MCH","Name_fr":"MCH","Name_ja":"機工士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":96,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":0,"EffectRange":0,"ID":16503,"Icon":"/i/003000/003503.png","IconHD":"/i/003000/003503_hr1.png","IconID":3503,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Pile Bunker","Name_de":"Pressluftramme","Name_en":"Pile Bunker","Name_fr":"Marteau piqueur","Name_ja":"クイーン・パイルバンカー","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":3,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/60"},"61":{"ID":61,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3204,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp004","Key_en":"mon_sp/[SKL_ID]/mon_sp004","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3204,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":3,"Name":"打","Name_de":"打","Name_en":"打","Name_fr":"contondant","Name_ja":"打"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":3,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":96,"LNC":0,"LTW":0,"MCH":1,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"MCH","Name_de":"MCH","Name_en":"MCH","Name_fr":"MCH","Name_ja":"機工士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":96,"ClassJobLevel":86,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":0,"EffectRange":0,"ID":25787,"Icon":"/i/003000/003047.png","IconHD":"/i/003000/003047_hr1.png","IconID":3047,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Crowned Collider","Name_de":"DAME-Dynamitron","Name_en":"Crowned Collider","Name_fr":"Collisionneur royal","Name_ja":"クイーン・コレダー","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":3,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/61"},"62":{"ID":62,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6977,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s10","Key_en":"ws/bt_chk_chk/ws_s10","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6977,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":15,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":15999,"Icon":"/i/003000/003455.png","IconHD":"/i/003000/003455_hr1.png","IconID":3455,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Emboite","Name_de":"Pas Emboite der Rose","Name_en":"Emboite","Name_fr":"Emboîté carmin","Name_ja":"薔薇のアンボワテ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":90,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/62"},"63":{"ID":63,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6978,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s11","Key_en":"ws/bt_chk_chk/ws_s11","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6978,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":15,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":16000,"Icon":"/i/003000/003456.png","IconHD":"/i/003000/003456_hr1.png","IconID":3456,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Entrechat","Name_de":"Entrechat der Schwalbe","Name_en":"Entrechat","Name_fr":"Entrechat outremer","Name_ja":"小鳥のアントルシャ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":90,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/63"},"64":{"ID":64,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6979,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s12","Key_en":"ws/bt_chk_chk/ws_s12","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6979,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":15,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":16001,"Icon":"/i/003000/003457.png","IconHD":"/i/003000/003457_hr1.png","IconID":3457,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Jete","Name_de":"Jete des Laubs","Name_en":"Jete","Name_fr":"Jeté verdoyant","Name_ja":"緑葉のジュテ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":90,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/64"},"65":{"ID":65,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6980,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s13","Key_en":"ws/bt_chk_chk/ws_s13","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6980,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":15,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":16002,"Icon":"/i/003000/003458.png","IconHD":"/i/003000/003458_hr1.png","IconID":3458,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Pirouette","Name_de":"Pirouette der Krone","Name_en":"Pirouette","Name_fr":"Pirouette dorée","Name_ja":"金冠のピルエッテ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":90,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/65"},"66":{"ID":66,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":6982,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s14_hit","Key_en":"ws/bt_chk_chk/ws_s14_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":6982,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6981,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s14","Key_en":"ws/bt_chk_chk/ws_s14","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6981,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":15,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":15,"ID":16003,"Icon":"/i/003000/003459.png","IconHD":"/i/003000/003459_hr1.png","IconID":3459,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Standard Finish","Name_de":"Einfaches Finale","Name_en":"Standard Finish","Name_fr":"Final classique","Name_ja":"スタンダードフィニッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":1,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/66"},"67":{"ID":67,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":6982,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s14_hit","Key_en":"ws/bt_chk_chk/ws_s14_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":6982,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6981,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s14","Key_en":"ws/bt_chk_chk/ws_s14","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6981,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":15,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":15,"ID":16191,"Icon":"/i/003000/003459.png","IconHD":"/i/003000/003459_hr1.png","IconID":3459,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Single Standard Finish","Name_de":"Einfaches Finale I","Name_en":"Single Standard Finish","Name_fr":"Final classique simple","Name_ja":"シングル・スタンダードフィニッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":2,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/67"},"68":{"ID":68,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":6982,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s14_hit","Key_en":"ws/bt_chk_chk/ws_s14_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":6982,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6981,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s14","Key_en":"ws/bt_chk_chk/ws_s14","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6981,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":15,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":15,"ID":16192,"Icon":"/i/003000/003459.png","IconHD":"/i/003000/003459_hr1.png","IconID":3459,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Double Standard Finish","Name_de":"Einfaches Finale II","Name_en":"Double Standard Finish","Name_fr":"Final classique doublé","Name_ja":"ダブル・スタンダードフィニッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":3,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/68"},"69":{"ID":69,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":6984,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15_hit","Key_en":"ws/bt_chk_chk/ws_s15_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":6984,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6983,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15","Key_en":"ws/bt_chk_chk/ws_s15","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6983,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":15,"ID":16004,"Icon":"/i/003000/003474.png","IconHD":"/i/003000/003474_hr1.png","IconID":3474,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Technical Finish","Name_de":"Komplexes Finale","Name_en":"Technical Finish","Name_fr":"Final technique","Name_ja":"テクニカルフィニッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":4,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68790,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/69"},"70":{"ID":70,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":6984,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15_hit","Key_en":"ws/bt_chk_chk/ws_s15_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":6984,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6983,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15","Key_en":"ws/bt_chk_chk/ws_s15","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6983,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":15,"ID":16193,"Icon":"/i/003000/003474.png","IconHD":"/i/003000/003474_hr1.png","IconID":3474,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Single Technical Finish","Name_de":"Komplexes Finale I","Name_en":"Single Technical Finish","Name_fr":"Final technique simple","Name_ja":"シングル・テクニカルフィニッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":5,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68790,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/70"},"71":{"ID":71,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":6984,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15_hit","Key_en":"ws/bt_chk_chk/ws_s15_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":6984,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6983,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15","Key_en":"ws/bt_chk_chk/ws_s15","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6983,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":15,"ID":16194,"Icon":"/i/003000/003474.png","IconHD":"/i/003000/003474_hr1.png","IconID":3474,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Double Technical Finish","Name_de":"Komplexes Finale II","Name_en":"Double Technical Finish","Name_fr":"Final technique doublé","Name_ja":"ダブル・テクニカルフィニッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":6,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68790,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/71"},"72":{"ID":72,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":6984,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15_hit","Key_en":"ws/bt_chk_chk/ws_s15_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":6984,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6983,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15","Key_en":"ws/bt_chk_chk/ws_s15","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6983,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":15,"ID":16195,"Icon":"/i/003000/003474.png","IconHD":"/i/003000/003474_hr1.png","IconID":3474,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Triple Technical Finish","Name_de":"Komplexes Finale III","Name_en":"Triple Technical Finish","Name_fr":"Final technique triplé","Name_ja":"トリプル・テクニカルフィニッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":7,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68790,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/72"},"73":{"ID":73,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":6984,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15_hit","Key_en":"ws/bt_chk_chk/ws_s15_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":6984,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":6983,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ws/bt_chk_chk/ws_s15","Key_en":"ws/bt_chk_chk/ws_s15","KillUpper":0,"LoadType":2,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":6983,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":15,"ID":16196,"Icon":"/i/003000/003474.png","IconHD":"/i/003000/003474_hr1.png","IconID":3474,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Quadruple Technical Finish","Name_de":"Komplexes Finale IV","Name_en":"Quadruple Technical Finish","Name_fr":"Final technique quadruplé","Name_ja":"クワッド・テクニカルフィニッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":8,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68790,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/73"},"74":{"ID":74,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":64,"Status":{"CanDispel":0,"Category":1,"Description":"Dancing to the beat of your own drum.","Description_de":"Deiner Intuition folgend, tanzt du den Kriegstanz.","Description_en":"Dancing to the beat of your own drum.","Description_fr":"Improvise une danse.","Description_ja":"ダンスを踊っている状態。","HitEffect":16,"ID":1827,"Icon":"/i/013000/013716.png","IconHD":"/i/013000/013716_hr1.png","IconID":13716,"InflictedByActor":0,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Improvisation","Name_de":"Tanzimprovisation","Name_en":"Improvisation","Name_fr":"Improvisation","Name_ja":"インプロビゼーション","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":1827},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":64,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8278,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/chk_rdc/abl016","Key_en":"ability/chk_rdc/abl016","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8278,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":6,"EffectRange":8,"ID":25789,"Icon":"/i/003000/003479.png","IconHD":"/i/003000/003479_hr1.png","IconID":3479,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Improvised Finish","Name_de":"Improvisiertes Finale","Name_en":"Improvised Finish","Name_fr":"Final improvisé","Name_ja":"インプロビゼーション・フィニッシュ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":91,"SecondaryCostValue":1827,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/74"},"75":{"ID":75,"Icon":null,"Name":{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":3,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":65,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Tillana0101.","Description_de":"F201F6F201F7Tillana0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Tillana0101.","Description_fr":"Tillana peut être lancé.","Description_ja":"ティラナを実行できる状態。","HitEffect":16,"ID":2698,"Icon":"/i/013000/013722.png","IconHD":"/i/013000/013722_hr1.png","IconID":13722,"InflictedByActor":0,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Flourishing Finish","Name_de":"Tillana","Name_en":"Flourishing Finish","Name_fr":"Tillana préparé","Name_ja":"ティラナ実行可","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":2698},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":65,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8279,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/chk_rdc/abl017","Key_en":"ability/chk_rdc/abl017","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8279,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":"-1","BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":1,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":150,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"DNC","Name_de":"TÄN","Name_en":"DNC","Name_fr":"DNS","Name_ja":"踊り子","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":150,"ClassJobLevel":82,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":15,"ID":25790,"Icon":"/i/003000/003480.png","IconHD":"/i/003000/003480_hr1.png","IconID":3480,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Tillana","Name_de":"Tillana","Name_en":"Tillana","Name_fr":"Tillana","Name_ja":"ティラナ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2698,"Range":0,"Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":2698,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/75"},"76":{"ID":76,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8230,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/thm_black/mgc010","Key_en":"magic/thm_black/mgc010","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8230,"AnimationStart":{"ID":35,"Name":{"ActionTimelineIDMode":0,"ID":94,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_blk_start","Key_en":"battle/magic_blk_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":94,"VFX":{"ID":99,"Location":"cmbl_castx0c","Location_en":"cmbl_castx0c"},"VFXTarget":"VFX","VFXTargetID":99},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":35,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":25,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":1,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":26,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"BLM","Name_de":"SMA","Name_en":"BLM","Name_fr":"MNO","Name_ja":"黒魔道士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":26,"ClassJobLevel":90,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":25797,"Icon":"/i/002000/002672.png","IconHD":"/i/002000/002672_hr1.png","IconID":2672,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Paradox","Name_de":"Paradox","Name_en":"Paradox","Name_fr":"Paradoxe","Name_ja":"パラドックス","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":76,"PrimaryCostValue":16,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":3,"VFX":{"ID":85,"Location":"cmat_ligct0c","Location_en":"cmat_ligct0c"},"VFXTarget":"VFX","VFXTargetID":85},"VFXTarget":"ActionCastVFX","VFXTargetID":3,"XAxisModifier":0},"Url":"/ActionIndirection/76"},"77":{"ID":77,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8230,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/thm_black/mgc010","Key_en":"magic/thm_black/mgc010","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8230,"AnimationStart":{"ID":35,"Name":{"ActionTimelineIDMode":0,"ID":94,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_blk_start","Key_en":"battle/magic_blk_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":94,"VFX":{"ID":99,"Location":"cmbl_castx0c","Location_en":"cmbl_castx0c"},"VFXTarget":"VFX","VFXTargetID":99},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":35,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":25,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":1,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":26,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"BLM","Name_de":"SMA","Name_en":"BLM","Name_fr":"MNO","Name_ja":"黒魔道士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":0,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":26,"ClassJobLevel":90,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":25797,"Icon":"/i/002000/002672.png","IconHD":"/i/002000/002672_hr1.png","IconID":2672,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Paradox","Name_de":"Paradox","Name_en":"Paradox","Name_fr":"Paradoxe","Name_ja":"パラドックス","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":76,"PrimaryCostValue":16,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":3,"VFX":{"ID":85,"Location":"cmat_ligct0c","Location_en":"cmat_ligct0c"},"VFXTarget":"VFX","VFXTargetID":85},"VFXTarget":"ActionCastVFX","VFXTargetID":3,"XAxisModifier":0},"Url":"/ActionIndirection/77"},"78":{"ID":78,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8263,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/swl_summon/mgc020","Key_en":"magic/swl_summon/mgc020","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8263,"AnimationStart":{"ID":38,"Name":{"ActionTimelineIDMode":0,"ID":104,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sum_start","Key_en":"battle/magic_sum_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":104,"VFX":{"ID":103,"Location":"cmsm_castx0s","Location_en":"cmsm_castx0s"},"VFXTarget":"VFX","VFXTargetID":103},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":38,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":58,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":25820,"Icon":"/i/002000/002757.png","IconHD":"/i/002000/002757_hr1.png","IconID":2757,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Astral Impulse","Name_de":"Lichtimpuls","Name_en":"Astral Impulse","Name_fr":"Pulsar astral","Name_ja":"アストラルインパルス","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":79,"SecondaryCostValue":1,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":67640,"VFX":{"ID":3,"VFX":{"ID":85,"Location":"cmat_ligct0c","Location_en":"cmat_ligct0c"},"VFXTarget":"VFX","VFXTargetID":85},"VFXTarget":"ActionCastVFX","VFXTargetID":3,"XAxisModifier":0},"Url":"/ActionIndirection/78"},"79":{"ID":79,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8270,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/swl_summon/mgc026","Key_en":"magic/swl_summon/mgc026","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8270,"AnimationStart":{"ID":38,"Name":{"ActionTimelineIDMode":0,"ID":104,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sum_start","Key_en":"battle/magic_sum_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":104,"VFX":{"ID":103,"Location":"cmsm_castx0s","Location_en":"cmsm_castx0s"},"VFXTarget":"VFX","VFXTargetID":103},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":38,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":58,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":25821,"Icon":"/i/002000/002758.png","IconHD":"/i/002000/002758_hr1.png","IconID":2758,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Astral Flare","Name_de":"Lichtflare","Name_en":"Astral Flare","Name_fr":"Brasier astral","Name_ja":"アストラルフレア","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":79,"SecondaryCostValue":1,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":67640,"VFX":{"ID":3,"VFX":{"ID":85,"Location":"cmat_ligct0c","Location_en":"cmat_ligct0c"},"VFXTarget":"VFX","VFXTargetID":85},"VFXTarget":"ActionCastVFX","VFXTargetID":3,"XAxisModifier":0},"Url":"/ActionIndirection/79"},"80":{"ID":80,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":4030,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl027_hit","Key_en":"ability/swl_summon/abl027_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":4030,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3993,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl027","Key_en":"ability/swl_summon/abl027","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3993,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":60,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":6,"EffectRange":5,"ID":3582,"Icon":"/i/002000/002685.png","IconHD":"/i/002000/002685_hr1.png","IconID":2685,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Deathflare","Name_de":"Todesflamme","Name_en":"Deathflare","Name_fr":"Brasier de mort","Name_ja":"デスフレア","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":200,"SecondaryCostType":79,"SecondaryCostValue":1,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":67641,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/80"},"81":{"ID":81,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3201,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp001","Key_en":"mon_sp/[SKL_ID]/mon_sp001","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3201,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":0,"EffectRange":0,"ID":7428,"Icon":"/i/002000/002692.png","IconHD":"/i/002000/002692_hr1.png","IconID":2692,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Wyrmwave","Name_de":"Drachenwelle","Name_en":"Wyrmwave","Name_fr":"Onde draconique","Name_ja":"ウィルムウェーブ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":50,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68165,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/81"},"82":{"ID":82,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":3242,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp002_hit","Key_en":"mon_sp/[SKL_ID]/mon_sp002_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":3242,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3202,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp002","Key_en":"mon_sp/[SKL_ID]/mon_sp002","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3202,"AnimationStart":{"ID":8,"Name":{"ActionTimelineIDMode":0,"ID":130,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"battle/mon_sp_a_start","Key_en":"battle/mon_sp_a_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":2,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":130,"VFX":null,"VFXTarget":"VFX","VFXTargetID":0},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":8,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":70,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":0,"EffectRange":5,"ID":7449,"Icon":"/i/002000/002694.png","IconHD":"/i/002000/002694_hr1.png","IconID":2694,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Akh Morn","Name_de":"Akh Morn","Name_en":"Akh Morn","Name_fr":"Akh Morn","Name_ja":"アク・モーン","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":50,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":68165,"VFX":{"ID":9,"VFX":{"ID":81,"Location":"cmat_wndct0c","Location_en":"cmat_wndct0c"},"VFXTarget":"VFX","VFXTargetID":81},"VFXTarget":"ActionCastVFX","VFXTargetID":9,"XAxisModifier":0},"Url":"/ActionIndirection/82"},"83":{"ID":83,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8260,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/swl_summon/mgc017","Key_en":"magic/swl_summon/mgc017","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8260,"AnimationStart":{"ID":38,"Name":{"ActionTimelineIDMode":0,"ID":104,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sum_start","Key_en":"battle/magic_sum_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":104,"VFX":{"ID":103,"Location":"cmsm_castx0s","Location_en":"cmsm_castx0s"},"VFXTarget":"VFX","VFXTargetID":103},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":38,"Aspect":1,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":28,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":72,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":25823,"Icon":"/i/002000/002760.png","IconHD":"/i/002000/002760_hr1.png","IconID":2760,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Ruby Rite","Name_de":"Rubin-Ritus","Name_en":"Ruby Rite","Name_fr":"Rite de rubis","Name_ja":"ルビー・リチュアル","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":72,"PrimaryCostValue":3,"Range":25,"Recast100ms":30,"SecondaryCostType":118,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":13,"VFX":{"ID":79,"Location":"cmat_firct0c","Location_en":"cmat_firct0c"},"VFXTarget":"VFX","VFXTargetID":79},"VFXTarget":"ActionCastVFX","VFXTargetID":13,"XAxisModifier":0},"Url":"/ActionIndirection/83"},"84":{"ID":84,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8261,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/swl_summon/mgc018","Key_en":"magic/swl_summon/mgc018","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8261,"AnimationStart":{"ID":38,"Name":{"ActionTimelineIDMode":0,"ID":104,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sum_start","Key_en":"battle/magic_sum_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":104,"VFX":{"ID":103,"Location":"cmsm_castx0s","Location_en":"cmsm_castx0s"},"VFXTarget":"VFX","VFXTargetID":103},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":38,"Aspect":4,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":72,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":25824,"Icon":"/i/002000/002761.png","IconHD":"/i/002000/002761_hr1.png","IconID":2761,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Topaz Rite","Name_de":"Topas-Ritus","Name_en":"Topaz Rite","Name_fr":"Rite de topaze","Name_ja":"トパーズ・リチュアル","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":73,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":119,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":7,"VFX":{"ID":82,"Location":"cmat_ethct0c","Location_en":"cmat_ethct0c"},"VFXTarget":"VFX","VFXTargetID":82},"VFXTarget":"ActionCastVFX","VFXTargetID":7,"XAxisModifier":0},"Url":"/ActionIndirection/84"},"85":{"ID":85,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8262,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/swl_summon/mgc019","Key_en":"magic/swl_summon/mgc019","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8262,"AnimationStart":{"ID":38,"Name":{"ActionTimelineIDMode":0,"ID":104,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sum_start","Key_en":"battle/magic_sum_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":104,"VFX":{"ID":103,"Location":"cmsm_castx0s","Location_en":"cmsm_castx0s"},"VFXTarget":"VFX","VFXTargetID":103},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":38,"Aspect":3,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":72,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":25825,"Icon":"/i/002000/002762.png","IconHD":"/i/002000/002762_hr1.png","IconID":2762,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Emerald Rite","Name_de":"Smaragd-Ritus","Name_en":"Emerald Rite","Name_fr":"Rite d'émeraude","Name_ja":"エメラルド・リチュアル","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":74,"PrimaryCostValue":3,"Range":25,"Recast100ms":15,"SecondaryCostType":120,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":9,"VFX":{"ID":81,"Location":"cmat_wndct0c","Location_en":"cmat_wndct0c"},"VFXTarget":"VFX","VFXTargetID":81},"VFXTarget":"ActionCastVFX","VFXTargetID":9,"XAxisModifier":0},"Url":"/ActionIndirection/85"},"86":{"ID":86,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7094,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl036","Key_en":"ability/swl_summon/abl036","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7094,"AnimationStart":{"ID":38,"Name":{"ActionTimelineIDMode":0,"ID":104,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sum_start","Key_en":"battle/magic_sum_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":104,"VFX":{"ID":103,"Location":"cmsm_castx0s","Location_en":"cmsm_castx0s"},"VFXTarget":"VFX","VFXTargetID":103},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":38,"Aspect":1,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":0,"ID":16514,"Icon":"/i/002000/002735.png","IconHD":"/i/002000/002735_hr1.png","IconID":2735,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Fountain of Fire","Name_de":"Quell des Feuers","Name_en":"Fountain of Fire","Name_fr":"Flamme de la vie","Name_ja":"霊泉の炎","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":93,"SecondaryCostValue":1,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":3,"VFX":{"ID":85,"Location":"cmat_ligct0c","Location_en":"cmat_ligct0c"},"VFXTarget":"VFX","VFXTargetID":85},"VFXTarget":"ActionCastVFX","VFXTargetID":3,"XAxisModifier":0},"Url":"/ActionIndirection/86"},"87":{"ID":87,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":7096,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl037_hit","Key_en":"ability/swl_summon/abl037_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":7096,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7095,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl037","Key_en":"ability/swl_summon/abl037","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7095,"AnimationStart":{"ID":38,"Name":{"ActionTimelineIDMode":0,"ID":104,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sum_start","Key_en":"battle/magic_sum_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":104,"VFX":{"ID":103,"Location":"cmsm_castx0s","Location_en":"cmsm_castx0s"},"VFXTarget":"VFX","VFXTargetID":103},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":38,"Aspect":1,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":8,"ID":16515,"Icon":"/i/002000/002736.png","IconHD":"/i/002000/002736_hr1.png","IconID":2736,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Brand of Purgatory","Name_de":"Zeichen der Läuterung","Name_en":"Brand of Purgatory","Name_fr":"Tison du purgatoire","Name_ja":"煉獄の炎","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":93,"SecondaryCostValue":1,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":3,"VFX":{"ID":85,"Location":"cmat_ligct0c","Location_en":"cmat_ligct0c"},"VFXTarget":"VFX","VFXTargetID":85},"VFXTarget":"ActionCastVFX","VFXTargetID":3,"XAxisModifier":0},"Url":"/ActionIndirection/87"},"88":{"ID":88,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":58,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7097,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl038","Key_en":"ability/swl_summon/abl038","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7097,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":7,"EffectRange":0,"ID":25831,"Icon":"/i/002000/002765.png","IconHD":"/i/002000/002765_hr1.png","IconID":2765,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Summon Phoenix","Name_de":"Phönix-Beschwörung","Name_en":"Summon Phoenix","Name_fr":"Invocation Phénix","Name_ja":"サモン・フェニックス","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":600,"SecondaryCostType":92,"SecondaryCostValue":1,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/88"},"89":{"ID":89,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3201,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp001","Key_en":"mon_sp/[SKL_ID]/mon_sp001","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3201,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":0,"CanTargetSelf":1,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":0,"EffectRange":15,"ID":16517,"Icon":"/i/002000/002731.png","IconHD":"/i/002000/002731_hr1.png","IconID":2731,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Everlasting Flight","Name_de":"Schwingen der Unsterblichkeit","Name_en":"Everlasting Flight","Name_fr":"Vol éternel","Name_ja":"不死鳥の翼","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/89"},"90":{"ID":90,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8265,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl047","Key_en":"ability/swl_summon/abl047","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8265,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":0,"AttackType":null,"AttackTypeTarget":"AttackType","AttackTypeTargetID":0,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":0,"CanTargetParty":1,"CanTargetSelf":1,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":5,"EffectRange":0,"ID":25830,"Icon":"/i/002000/002764.png","IconHD":"/i/002000/002764_hr1.png","IconID":2764,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Rekindle","Name_de":"Wiederaufleben","Name_en":"Rekindle","Name_fr":"Ravivement","Name_ja":"再生の炎","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":200,"SecondaryCostType":93,"SecondaryCostValue":1,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/90"},"91":{"ID":91,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3202,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp002","Key_en":"mon_sp/[SKL_ID]/mon_sp002","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3202,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":1,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":0,"EffectRange":0,"ID":16519,"Icon":"/i/002000/002733.png","IconHD":"/i/002000/002733_hr1.png","IconID":2733,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Scarlet Flame","Name_de":"Scharlachflamme","Name_en":"Scarlet Flame","Name_fr":"Flamme écarlate","Name_ja":"火焔","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":50,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/91"},"92":{"ID":92,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":7098,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl039","Key_en":"ability/swl_summon/abl039","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":7098,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":7,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":1,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":4,"EffectRange":0,"ID":16516,"Icon":"/i/002000/002737.png","IconHD":"/i/002000/002737_hr1.png","IconID":2737,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Enkindle Phoenix","Name_de":"Phönix-Entflammung","Name_en":"Enkindle Phoenix","Name_fr":"Galvanisation Phénix","Name_ja":"エンキンドル・フェニックス","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":200,"SecondaryCostType":93,"SecondaryCostValue":1,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/92"},"93":{"ID":93,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":3203,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"mon_sp/[SKL_ID]/mon_sp003","Key_en":"mon_sp/[SKL_ID]/mon_sp003","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":3203,"AnimationStart":{"ID":8,"Name":{"ActionTimelineIDMode":0,"ID":130,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"battle/mon_sp_a_start","Key_en":"battle/mon_sp_a_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":2,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":130,"VFX":null,"VFXTarget":"VFX","VFXTargetID":0},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":8,"Aspect":1,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":80,"ClassJobTarget":"ClassJob","ClassJobTargetID":"-1","CooldownGroup":0,"EffectRange":5,"ID":16518,"Icon":"/i/002000/002732.png","IconHD":"/i/002000/002732_hr1.png","IconID":2732,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Revelation","Name_de":"Offenbarung","Name_en":"Revelation","Name_fr":"Révélation","Name_ja":"リヴァレーション","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":50,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":9,"VFX":{"ID":81,"Location":"cmat_wndct0c","Location_en":"cmat_wndct0c"},"VFXTarget":"VFX","VFXTargetID":81},"VFXTarget":"ActionCastVFX","VFXTargetID":9,"XAxisModifier":0},"Url":"/ActionIndirection/93"},"94":{"ID":94,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8267,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/swl_summon/mgc023","Key_en":"magic/swl_summon/mgc023","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8267,"AnimationStart":{"ID":38,"Name":{"ActionTimelineIDMode":0,"ID":104,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sum_start","Key_en":"battle/magic_sum_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":104,"VFX":{"ID":103,"Location":"cmsm_castx0s","Location_en":"cmsm_castx0s"},"VFXTarget":"VFX","VFXTargetID":103},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":38,"Aspect":1,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":28,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":82,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":25832,"Icon":"/i/002000/002766.png","IconHD":"/i/002000/002766_hr1.png","IconID":2766,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Ruby Catastrophe","Name_de":"Rubin-Verderben","Name_en":"Ruby Catastrophe","Name_fr":"Cataclysme de rubis","Name_ja":"ルビー・カタストロフィ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":72,"PrimaryCostValue":3,"Range":25,"Recast100ms":30,"SecondaryCostType":118,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":13,"VFX":{"ID":79,"Location":"cmat_firct0c","Location_en":"cmat_firct0c"},"VFXTarget":"VFX","VFXTargetID":79},"VFXTarget":"ActionCastVFX","VFXTargetID":13,"XAxisModifier":0},"Url":"/ActionIndirection/94"},"95":{"ID":95,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8268,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/swl_summon/mgc024","Key_en":"magic/swl_summon/mgc024","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8268,"AnimationStart":{"ID":38,"Name":{"ActionTimelineIDMode":0,"ID":104,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sum_start","Key_en":"battle/magic_sum_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":104,"VFX":{"ID":103,"Location":"cmsm_castx0s","Location_en":"cmsm_castx0s"},"VFXTarget":"VFX","VFXTargetID":103},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":38,"Aspect":4,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":82,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":25833,"Icon":"/i/002000/002767.png","IconHD":"/i/002000/002767_hr1.png","IconID":2767,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Topaz Catastrophe","Name_de":"Topas-Verderben","Name_en":"Topaz Catastrophe","Name_fr":"Cataclysme de topaze","Name_ja":"トパーズ・カタストロフィ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":73,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":119,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":7,"VFX":{"ID":82,"Location":"cmat_ethct0c","Location_en":"cmat_ethct0c"},"VFXTarget":"VFX","VFXTargetID":82},"VFXTarget":"ActionCastVFX","VFXTargetID":7,"XAxisModifier":0},"Url":"/ActionIndirection/95"},"96":{"ID":96,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8269,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/swl_summon/mgc025","Key_en":"magic/swl_summon/mgc025","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8269,"AnimationStart":{"ID":38,"Name":{"ActionTimelineIDMode":0,"ID":104,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sum_start","Key_en":"battle/magic_sum_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":104,"VFX":{"ID":103,"Location":"cmsm_castx0s","Location_en":"cmsm_castx0s"},"VFXTarget":"VFX","VFXTargetID":103},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":38,"Aspect":3,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":82,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":25834,"Icon":"/i/002000/002768.png","IconHD":"/i/002000/002768_hr1.png","IconID":2768,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Emerald Catastrophe","Name_de":"Smaragd-Verderben","Name_en":"Emerald Catastrophe","Name_fr":"Cataclysme d'émeraude","Name_ja":"エメラルド・カタストロフィ","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":74,"PrimaryCostValue":3,"Range":25,"Recast100ms":15,"SecondaryCostType":120,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":9,"VFX":{"ID":81,"Location":"cmat_wndct0c","Location_en":"cmat_wndct0c"},"VFXTarget":"VFX","VFXTargetID":81},"VFXTarget":"ActionCastVFX","VFXTargetID":9,"XAxisModifier":0},"Url":"/ActionIndirection/96"},"97":{"ID":97,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":68,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Crimson Cyclone0101.","Description_de":"F201F6F201F7Zinnober-Zyklon0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Crimson Cyclone0101.","Description_fr":"Cyclone écarlate peut être lancé.","Description_ja":"クリムゾンサイクロンを実行できる状態。","HitEffect":16,"ID":2724,"Icon":"/i/012000/012696.png","IconHD":"/i/012000/012696_hr1.png","IconID":12696,"InflictedByActor":1,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Ifrit's Favor","Name_de":"Ifrits Gunst","Name_en":"Ifrit's Favor","Name_fr":"Cyclone écarlate préparé","Name_ja":"クリムゾンサイクロン実行可","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":2724},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":68,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":1,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8271,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/swl_summon/mgc027","Key_en":"magic/swl_summon/mgc027","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8271,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":1,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":1,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":86,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":25835,"Icon":"/i/002000/002769.png","IconHD":"/i/002000/002769_hr1.png","IconID":2769,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Crimson Cyclone","Name_de":"Zinnober-Zyklon","Name_en":"Crimson Cyclone","Name_fr":"Cyclone écarlate","Name_ja":"クリムゾンサイクロン","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":2724,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/97"},"98":{"ID":98,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":{"ActionCategory":2,"ActionCombo":0,"ActionProcStatus":68,"ActionTimelineHit":1875,"AdditionalCooldownGroup":0,"AffectsPosition":1,"AnimationEnd":8271,"AnimationStart":0,"Aspect":1,"AttackType":5,"BehaviourType":1,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":0,"ClassJobCategory":28,"ClassJobLevel":86,"CooldownGroup":58,"EffectRange":5,"ID":25835,"Icon":"/i/002000/002769.png","IconHD":"/i/002000/002769_hr1.png","IconID":2769,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Crimson Cyclone","Name_de":"Zinnober-Zyklon","Name_en":"Crimson Cyclone","Name_fr":"Cyclone écarlate","Name_ja":"クリムゾンサイクロン","Omen":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":2724,"StatusGainSelf":0,"TargetArea":0,"UnlockLink":0,"VFX":0,"XAxisModifier":0},"ActionComboTarget":"Action","ActionComboTargetID":25835,"ActionProcStatus":null,"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":0,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8211,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/swl_summon/mgc029","Key_en":"magic/swl_summon/mgc029","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8211,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":1,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":86,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":25885,"Icon":"/i/002000/002779.png","IconHD":"/i/002000/002779_hr1.png","IconID":2779,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Crimson Strike","Name_de":"Zinnober-Schlag","Name_en":"Crimson Strike","Name_fr":"Assaut écarlate","Name_ja":"クリムゾンストライク","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":3,"Recast100ms":25,"SecondaryCostType":58,"SecondaryCostValue":0,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/98"},"99":{"ID":99,"Icon":null,"Name":{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":4,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":76,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Mountain Buster0101.","Description_de":"F201F6F201F7Bergsprenger0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Mountain Buster0101.","Description_fr":"Casse-montagnes peut être lancé.","Description_ja":"マウンテンバスターを実行できる状態。","HitEffect":16,"ID":2853,"Icon":"/i/012000/012698.png","IconHD":"/i/012000/012698_hr1.png","IconID":12698,"InflictedByActor":1,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Titan's Favor","Name_de":"Titans Gunst","Name_en":"Titan's Favor","Name_fr":"Casse-montagnes préparé","Name_ja":"マウンテンバスター実行可","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":2853},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":76,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8272,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"ability/swl_summon/abl048","Key_en":"ability/swl_summon/abl048","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8272,"AnimationStart":null,"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":0,"Aspect":4,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":0,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":86,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":3,"EffectRange":5,"ID":25836,"Icon":"/i/002000/002770.png","IconHD":"/i/002000/002770_hr1.png","IconID":2770,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Mountain Buster","Name_de":"Bergsprenger","Name_en":"Mountain Buster","Name_fr":"Casse-montagnes","Name_ja":"マウンテンバスター","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2853,"Range":25,"Recast100ms":10,"SecondaryCostType":32,"SecondaryCostValue":2853,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":null,"VFXTarget":"ActionCastVFX","VFXTargetID":0,"XAxisModifier":0},"Url":"/ActionIndirection/99"},"100":{"ID":100,"Icon":null,"Name":{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionCategoryTarget":"ActionCategory","ActionCategoryTargetID":2,"ActionCombo":null,"ActionComboTarget":"Action","ActionComboTargetID":0,"ActionProcStatus":{"ID":69,"Status":{"CanDispel":0,"Category":1,"Description":"Able to execute F201F4F201F5Slipstream0101.","Description_de":"F201F6F201F7Wirbelströmung0101 kann ausgeführt werden.","Description_en":"Able to execute F201F4F201F5Slipstream0101.","Description_fr":"Sillage peut être lancé.","Description_ja":"スリップストリームを実行できる状態。","HitEffect":16,"ID":2725,"Icon":"/i/012000/012697.png","IconHD":"/i/012000/012697_hr1.png","IconID":12697,"InflictedByActor":1,"Invisibility":0,"IsFcBuff":0,"IsPermanent":0,"LockActions":0,"LockControl":0,"LockMovement":0,"Log":0,"MaxStacks":0,"Name":"Garuda's Favor","Name_de":"Garudas Gunst","Name_en":"Garuda's Favor","Name_fr":"Sillage préparé","Name_ja":"スリップストリーム実行可","PartyListPriority":0,"Transfiguration":0,"VFX":0},"StatusTarget":"Status","StatusTargetID":2725},"ActionProcStatusTarget":"ActionProcStatus","ActionProcStatusTargetID":69,"ActionTimelineHit":{"ActionTimelineIDMode":0,"ID":1875,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"normal_hit/normal_hit","Key_en":"normal_hit/normal_hit","KillUpper":0,"LoadType":0,"LookAtMode":0,"Pause":0,"Priority":0,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":0,"Type":5,"WeaponTimeline":null,"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":0},"ActionTimelineHitTarget":"ActionTimeline","ActionTimelineHitTargetID":1875,"AdditionalCooldownGroup":0,"AffectsPosition":0,"AnimationEnd":{"ActionTimelineIDMode":0,"ID":8273,"IsLoop":0,"IsMotionCanceledByMoving":0,"Key":"magic/swl_summon/mgc028","Key_en":"magic/swl_summon/mgc028","KillUpper":0,"LoadType":1,"LookAtMode":1,"Pause":0,"Priority":3,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":0,"WeaponTimeline":{"File":"weapon/battle_idle","File_en":"weapon/battle_idle","ID":1,"NextWeaponTimeline":"-1"},"WeaponTimelineTarget":"WeaponTimeline","WeaponTimelineTargetID":1},"AnimationEndTarget":"ActionTimeline","AnimationEndTargetID":8273,"AnimationStart":{"ID":38,"Name":{"ActionTimelineIDMode":0,"ID":104,"IsLoop":0,"IsMotionCanceledByMoving":1,"Key":"battle/magic_sum_start","Key_en":"battle/magic_sum_start","KillUpper":0,"LoadType":0,"LookAtMode":1,"Pause":0,"Priority":2,"Resident":0,"ResidentPap":0,"Slot":0,"Stance":0,"StartAttach":1,"Type":1,"WeaponTimeline":1},"NameTarget":"ActionTimeline","NameTargetID":104,"VFX":{"ID":103,"Location":"cmsm_castx0s","Location_en":"cmsm_castx0s"},"VFXTarget":"VFX","VFXTargetID":103},"AnimationStartTarget":"ActionCastTimeline","AnimationStartTargetID":38,"Aspect":3,"AttackType":{"ID":5,"Name":"魔法","Name_de":"魔法","Name_en":"魔法","Name_fr":"magie","Name_ja":"魔法"},"AttackTypeTarget":"AttackType","AttackTypeTargetID":5,"BehaviourType":0,"CanTargetDead":1,"CanTargetFriendly":0,"CanTargetHostile":1,"CanTargetParty":0,"CanTargetSelf":0,"Cast100ms":30,"CastType":2,"ClassJob":null,"ClassJobCategory":{"ACN":0,"ADV":0,"ALC":0,"ARC":0,"ARM":0,"AST":0,"BLM":0,"BLU":0,"BRD":0,"BSM":0,"BTN":0,"CNJ":0,"CRP":0,"CUL":0,"DNC":0,"DRG":0,"DRK":0,"FSH":0,"GLA":0,"GNB":0,"GSM":0,"ID":28,"LNC":0,"LTW":0,"MCH":0,"MIN":0,"MNK":0,"MRD":0,"NIN":0,"Name":"SMN","Name_de":"BSW","Name_en":"SMN","Name_fr":"INV","Name_ja":"召喚士","PGL":0,"PLD":0,"RDM":0,"ROG":0,"RPR":0,"SAM":0,"SCH":0,"SGE":0,"SMN":1,"THM":0,"WAR":0,"WHM":0,"WVR":0},"ClassJobCategoryTarget":"ClassJobCategory","ClassJobCategoryTargetID":28,"ClassJobLevel":86,"ClassJobTarget":"ClassJob","ClassJobTargetID":0,"CooldownGroup":58,"EffectRange":5,"ID":25837,"Icon":"/i/002000/002771.png","IconHD":"/i/002000/002771_hr1.png","IconID":2771,"IsPlayerAction":0,"IsPvP":0,"IsRoleAction":0,"MaxCharges":0,"Name":"Slipstream","Name_de":"Wirbelströmung","Name_en":"Slipstream","Name_fr":"Sillage","Name_ja":"スリップストリーム","Omen":null,"OmenTarget":"Omen","OmenTargetID":0,"PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":35,"SecondaryCostType":32,"SecondaryCostValue":2725,"StatusGainSelf":null,"StatusGainSelfTarget":"Status","StatusGainSelfTargetID":0,"TargetArea":0,"UnlockLink":0,"VFX":{"ID":9,"VFX":{"ID":81,"Location":"cmat_wndct0c","Location_en":"cmat_wndct0c"},"VFXTarget":"VFX","VFXTargetID":81},"VFXTarget":"ActionCastVFX","VFXTargetID":9,"XAxisModifier":0},"Url":"/ActionIndirection/100"}} \ No newline at end of file diff --git a/src/assets/classjobactions.json b/src/assets/classjobactions.json index f48f013..47a15d9 100644 --- a/src/assets/classjobactions.json +++ b/src/assets/classjobactions.json @@ -1 +1 @@ -{"2":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 200. Leaden Fist Potency: 370
\n
\n Opo-opo Form Bonus: Critical damage if dealt from a target's rear\n\nAdditional Effect: Changes form to raptor\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":53,"IconHD":"/i/000000/000208_hr1.png","Name":"Bootshine","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 270.\n\n300 when executed from a target's rear.\n\nCan only be executed when in raptor form.\n\nAdditional Effect: Changes form to coeurl\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":54,"IconHD":"/i/000000/000209_hr1.png","Name":"True Strike","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":108,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":6,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 270.\n\n300 when executed from a target's flank.\n\nCan only be executed when in coeurl form.\n\nAdditional Effect: Changes form to opo-opo\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":56,"IconHD":"/i/000000/000210_hr1.png","Name":"Snap Punch","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":109,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":2,"Description":"Reduces damage taken by 10%.\n\nCannot be used with Fists of Fire or Fists of Wind, and shares a recast timer with both.\n\nEffect ends upon reuse.","DescriptionJSON":null,"EffectRange":0,"ID":60,"IconHD":"/i/000000/000206_hr1.png","Name":"Fists of Earth","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":30,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":18,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 230.\n\n260 when executed from a target's flank.\n\nCan only be executed when in raptor form.\n\nAdditional Effect: Increases damage by 10%\n\nDuration: 15s\n\nAdditional Effect: Changes form to coeurl\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":61,"IconHD":"/i/000000/000213_hr1.png","Name":"Twin Snakes","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":108,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 110 to all nearby targets.\n\nOpo-opo Form Potency: 140\n\nAdditional Effect: Changes form to raptor\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":5,"ID":62,"IconHD":"/i/000000/000215_hr1.png","Name":"Arm of the Destroyer","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":42,"CooldownGroup":16,"Description":"Increases HP recovery via healing actions by 10% for self and nearby party members.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":15,"ID":65,"IconHD":"/i/000000/000216_hr1.png","Name":"Mantra","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 80.\n\n110 when executed from a target's rear.\n\nCan only be executed when in coeurl form.\n\nAdditional Effect: Damage over time\n\nPotency: 80\n\nDuration: 18s\n\nAdditional Effect: Changes form to opo-opo\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":66,"IconHD":"/i/000000/000204_hr1.png","Name":"Demolish","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":109,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":22,"Description":"Grants 6 stacks of Perfect Balance, each stack allowing the execution of a weaponskill that requires a certain form, without being in that form.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":69,"IconHD":"/i/000000/000217_hr1.png","Name":"Perfect Balance","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":34,"CooldownGroup":2,"Description":"Increases movement speed.\n\nCannot be used with Fists of Earth or Fists of Fire, and shares a recast timer with both.\n\nEffect ends upon reuse.","DescriptionJSON":null,"EffectRange":0,"ID":73,"IconHD":"/i/002000/002527_hr1.png","Name":"Fists of Wind","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":30,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"3":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 200.","DescriptionJSON":null,"EffectRange":0,"ID":31,"IconHD":"/i/000000/000260_hr1.png","Name":"Heavy Swing","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":31,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Heavy Swing\n\nCombo Potency: 320
\nCombo Bonus: Increases Beast Gauge by 10","DescriptionJSON":null,"EffectRange":0,"ID":37,"IconHD":"/i/000000/000255_hr1.png","Name":"Maim","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":6,"CooldownGroup":16,"Description":"Guarantees that all attacks are critical and direct hits.\n\nDuration: 10s
\nAdditional Effect: Extends Storm's Eye duration by 15s to a maximum of 60s","DescriptionJSON":null,"EffectRange":0,"ID":38,"IconHD":"/i/000000/000259_hr1.png","Name":"Berserk","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":17,"Description":"Increases maximum HP by 20% and restores the amount increased. Additional Effect: Increases HP recovery via healing actions on self by 20%
\n
\n Duration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":40,"IconHD":"/i/000000/000263_hr1.png","Name":"Thrill of Battle","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":10,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 130 to all enemies in a cone before you.","DescriptionJSON":null,"EffectRange":8,"ID":41,"IconHD":"/i/000000/000254_hr1.png","Name":"Overpower","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":8,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":37,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Maim\n\nCombo Potency: 420\n\nCombo Bonus: Restores own HP\n\nCure Potency: 250
\nCombo Bonus: Increases Beast Gauge by 20","DescriptionJSON":null,"EffectRange":0,"ID":42,"IconHD":"/i/000000/000258_hr1.png","Name":"Storm's Path","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":42,"CooldownGroup":24,"Description":"Brace yourself for an enemy onslaught, preventing most attacks from reducing your HP to less than 1.\n\nDuration: 8s\n\nWhen a target is selected, halts their movement with chains.","DescriptionJSON":null,"EffectRange":0,"ID":43,"IconHD":"/i/000000/000266_hr1.png","Name":"Holmgang","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":6,"Recast100ms":2400,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":38,"CooldownGroup":22,"Description":"Reduces damage taken by 30% and delivers an attack with a potency of 55 every time you suffer physical damage.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":44,"IconHD":"/i/000000/000267_hr1.png","Name":"Vengeance","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":37,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Maim\n\nCombo Potency: 420\n\nCombo Bonus: Increases damage dealt by 10%\n\nDuration: 30s\n\nExtends Storm's Eye duration by 30s to a maximum of 60s.
\nCombo Bonus: Increases Beast Gauge by 10","DescriptionJSON":null,"EffectRange":0,"ID":45,"IconHD":"/i/000000/000264_hr1.png","Name":"Storm's Eye","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Delivers a ranged attack with a potency of 140.\n\nAdditional Effect: Increased enmity","DescriptionJSON":null,"EffectRange":0,"ID":46,"IconHD":"/i/000000/000261_hr1.png","Name":"Tomahawk","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":10,"CooldownGroup":4,"Description":"Significantly increases enmity generation.\n\nEffect ends upon reuse.","DescriptionJSON":null,"EffectRange":0,"ID":48,"IconHD":"/i/002000/002551_hr1.png","Name":"Defiance","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":100,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"4":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 290 .
\n
\n
\n※Action changes to Raiden Thrust when Raiden Thrust Ready.","DescriptionJSON":null,"EffectRange":0,"ID":75,"IconHD":"/i/000000/000310_hr1.png","Name":"True Thrust","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":75,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 140 .\n\nCombo Action: True Thrust\n\nCombo Potency: 350","DescriptionJSON":null,"EffectRange":0,"ID":78,"IconHD":"/i/000000/000312_hr1.png","Name":"Vorpal Thrust","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":6,"CooldownGroup":12,"Description":"Ensures critical damage for first weaponskill used while Life Surge is active.\n\nDuration: 5s\n\nEffect cannot be applied to damage over time.\n\nAdditional Effect: Absorbs a portion of damage dealt as HP","DescriptionJSON":null,"EffectRange":0,"ID":83,"IconHD":"/i/000000/000304_hr1.png","Name":"Life Surge","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":450,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":78,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Vorpal Thrust\n\nCombo Potency: 530
\nCombo Bonus: Grants Sharper Fang and Claw if under the effect of","DescriptionJSON":null,"EffectRange":0,"ID":84,"IconHD":"/i/000000/000314_hr1.png","Name":"Full Thrust","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":18,"Description":"Increases damage dealt by 15%.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":85,"IconHD":"/i/000000/000309_hr1.png","Name":"Lance Charge","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":75,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":18,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 150 .\n\nCombo Action: True Thrust\n\nCombo Potency: 320 Combo Bonus: Increases damage dealt by 10%\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":87,"IconHD":"/i/000000/000317_hr1.png","Name":"Disembowel","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":87,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\n140 when executed from a target's rear.\n\nCombo Action: Disembowel\n\nCombo Potency: 290\n\nRear Combo Potency: 330\n\nCombo Bonus: Damage over time\n\nPotency: 50\n\nDuration: 24s
\nCombo Bonus: Grants Enhanced Wheeling Thrust if under the effect of","DescriptionJSON":null,"EffectRange":0,"ID":88,"IconHD":"/i/000000/000308_hr1.png","Name":"Chaos Thrust","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Delivers a ranged attack with a potency of 150.","DescriptionJSON":null,"EffectRange":0,"ID":90,"IconHD":"/i/000000/000315_hr1.png","Name":"Piercing Talon","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"5":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 180.
\nAdditional Effect: 20% chance of becoming Straight Shot Ready
\n
\nDuration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":97,"IconHD":"/i/000000/000358_hr1.png","Name":"Heavy Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":285,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 200.\n\nCan only be executed when Straight Shot Ready.","DescriptionJSON":null,"EffectRange":0,"ID":98,"IconHD":"/i/000000/000359_hr1.png","Name":"Straight Shot","PreservesCombo":0,"PrimaryCostType":10,"PrimaryCostValue":122,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":122,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":6,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nAdditional Effect: Venom\n\nPotency: 30\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":100,"IconHD":"/i/000000/000363_hr1.png","Name":"Venomous Bite","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":168,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":14,"Description":"Increases damage dealt by 10%.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":101,"IconHD":"/i/000000/000352_hr1.png","Name":"Raging Strikes","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":800,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":18,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 150 to all enemies in a cone before you.
\nAdditional Effect: 30% chance the recast timer for Bloodletter and Rain of Death will be reset","DescriptionJSON":null,"EffectRange":12,"ID":106,"IconHD":"/i/000000/000360_hr1.png","Name":"Quick Nock","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":12,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":38,"CooldownGroup":15,"Description":"Triples the number of strikes for a single-target weaponskill. Additional effects added only once.\n\nDuration: 10s\n\nAdditional Effect: Grants Straight Shot Ready\n\nDuration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":107,"IconHD":"/i/000000/000353_hr1.png","Name":"Barrage","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":800,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":12,"CooldownGroup":5,"Description":"Delivers an attack with a potency of 150.
\nShares a recast timer with Rain of Death.","DescriptionJSON":null,"EffectRange":0,"ID":110,"IconHD":"/i/000000/000361_hr1.png","Name":"Bloodletter","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":150,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":3,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":10,"Description":"Jump 10 yalms away from current target.\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":112,"IconHD":"/i/000000/000366_hr1.png","Name":"Repelling Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":5,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Deals wind damage with a potency of 60.\n\nAdditional Effect: Wind damage over time\n\nPotency: 40\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":113,"IconHD":"/i/000000/000367_hr1.png","Name":"Windbite","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":168,"TargetArea":0}],"6":[{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals earth damage with a potency of 140.","DescriptionJSON":null,"EffectRange":0,"ID":119,"IconHD":"/i/000000/000403_hr1.png","Name":"Stone","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":179,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 450
\nAdditional Effect: 15% chance next Cure II will cost no MP
\n
\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":120,"IconHD":"/i/000000/000405_hr1.png","Name":"Cure","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Deals wind damage with a potency of 50.\n\nAdditional Effect: Wind damage over time\n\nPotency: 30\n\nDuration: 18s","DescriptionJSON":null,"EffectRange":0,"ID":121,"IconHD":"/i/000000/000401_hr1.png","Name":"Aero","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":180,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":2,"ClassJobLevel":10,"CooldownGroup":58,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 300","DescriptionJSON":null,"EffectRange":15,"ID":124,"IconHD":"/i/000000/000408_hr1.png","Name":"Medica","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":10,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":80,"CastType":1,"ClassJobLevel":12,"CooldownGroup":58,"Description":"Resurrects target to a weakened state.","DescriptionJSON":null,"EffectRange":0,"ID":125,"IconHD":"/i/000000/000411_hr1.png","Name":"Raise","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":24,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":18,"CooldownGroup":58,"Description":"Deals earth damage with a potency of 200.","DescriptionJSON":null,"EffectRange":0,"ID":127,"IconHD":"/i/000000/000404_hr1.png","Name":"Stone II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":181,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":46,"CooldownGroup":58,"Description":"Deals wind damage with a potency of 60.\n\nAdditional Effect: Wind damage over time\n\nPotency: 60\n\nDuration: 18s","DescriptionJSON":null,"EffectRange":0,"ID":132,"IconHD":"/i/000000/000402_hr1.png","Name":"Aero II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":307,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":2,"ClassJobLevel":50,"CooldownGroup":58,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 200\n\nAdditional Effect: Regen\n\nCure Potency: 100\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":20,"ID":133,"IconHD":"/i/000000/000409_hr1.png","Name":"Medica II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":13,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":9,"Description":"Binds target.\n\nDuration: 6s","DescriptionJSON":null,"EffectRange":0,"ID":134,"IconHD":"/i/000000/000416_hr1.png","Name":"Fluid Aura","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 700","DescriptionJSON":null,"EffectRange":0,"ID":135,"IconHD":"/i/000000/000406_hr1.png","Name":"Cure II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":10,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"7":[{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 180.\n\nAdditional Effect: Grants Astral Fire or removes Umbral Ice\n\nDuration: 15s
\nAdditional Effect: 40% chance next Fire III will cost no MP and have no cast time
\n
\nDuration: 18s","DescriptionJSON":null,"EffectRange":0,"ID":141,"IconHD":"/i/000000/000451_hr1.png","Name":"Fire","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":8,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals ice damage with a potency of 180.\n\nAdditional Effect: Grants Umbral Ice or removes Astral Fire\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":142,"IconHD":"/i/000000/000454_hr1.png","Name":"Blizzard","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":6,"CooldownGroup":58,"Description":"Deals lightning damage with a potency of 30.\n\nAdditional Effect: Lightning damage over time\n\nPotency: 40\n\nDuration: 18s
\nAdditional Effect: 10% chance after each tick that the next Thunder spell of any grade will add its full damage over time amount to its initial damage, have no cast time, and cost no MP
\n
\nDuration: 18s
\n
\n Only one Thunder spell-induced damage over time effect per caster can be inflicted upon a single target.","DescriptionJSON":null,"EffectRange":0,"ID":144,"IconHD":"/i/000000/000457_hr1.png","Name":"Thunder","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":171,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":2,"ClassJobLevel":10,"CooldownGroup":58,"Description":"Puts target and all nearby enemies to sleep.\n\nDuration: 30s\n\nCancels auto-attack upon execution.","DescriptionJSON":null,"EffectRange":5,"ID":145,"IconHD":"/i/000000/000465_hr1.png","Name":"Sleep","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":8,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":12,"CooldownGroup":58,"Description":"Deals ice damage with a potency of 50 to all nearby enemies.\n\nAdditional Effect: Grants Umbral Ice or removes Astral Fire\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":5,"ID":146,"IconHD":"/i/000000/000455_hr1.png","Name":"Blizzard II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":8,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":30,"CastType":2,"ClassJobLevel":18,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 80 to target and all enemies nearby it.\n\nAdditional Effect: Grants Astral Fire or removes Umbral Ice\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":5,"ID":147,"IconHD":"/i/000000/000452_hr1.png","Name":"Fire II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":15,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":1,"Description":"Swaps Astral Fire with a single Umbral Ice, or Umbral Ice with a single Astral Fire.","DescriptionJSON":null,"EffectRange":0,"ID":149,"IconHD":"/i/000000/000466_hr1.png","Name":"Transpose","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":50,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":35,"CastType":1,"ClassJobLevel":34,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 240.\n\nAdditional Effect: Grants Astral Fire III and removes Umbral Ice\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":152,"IconHD":"/i/000000/000453_hr1.png","Name":"Fire III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":20,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":5,"Description":"Rush to a target party member's side.\n\nUnable to cast if bound.","DescriptionJSON":null,"EffectRange":0,"ID":155,"IconHD":"/i/000000/000467_hr1.png","Name":"Aetherial Manipulation","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":100,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 100.\n\nAdditional Effect: 20% chance potency will double","DescriptionJSON":null,"EffectRange":0,"ID":156,"IconHD":"/i/000000/000462_hr1.png","Name":"Scathe","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":8,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":22,"Description":"Creates a barrier that nullifies damage totaling up to 30% of maximum HP.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":157,"IconHD":"/i/000000/000463_hr1.png","Name":"Manaward","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":30,"CastType":2,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Deals lightning damage with a potency of 30 to target and all enemies nearby it.\n\nAdditional Effect: Lightning damage over time\n\nPotency: 30\n\nDuration: 12s
\nAdditional Effect: 3% chance after each tick that the next Thunder spell of any grade will add its full damage over time amount to its initial damage, have no cast time, and cost no MP
\n
\nDuration: 18s
\n
\n Only one Thunder spell-induced damage over time effect per caster can be inflicted upon a single target.","DescriptionJSON":null,"EffectRange":5,"ID":7447,"IconHD":"/i/000000/000468_hr1.png","Name":"Thunder II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":172,"TargetArea":0}],"8":[{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":11,"CooldownGroup":0,"Description":"Grants a bonus to control with every increase in quality.\n\nBonus stacks up to 11 times.","DescriptionJSON":null,"EffectRange":0,"ID":252,"IconHD":"/i/001000/001951_hr1.png","Name":"Inner Quiet","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":29,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":21,"CooldownGroup":0,"Description":"Increases the efficiency of next Touch action by 100%. Effect active for three steps.","DescriptionJSON":null,"EffectRange":0,"ID":260,"IconHD":"/i/001000/001955_hr1.png","Name":"Great Strides","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":32,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Restores 5 points of durability after each step for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4574,"IconHD":"/i/001000/001985_hr1.png","Name":"Manipulation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":96,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":37,"CooldownGroup":0,"Description":"For the next three steps, Brand of the Elements efficiency is increased by up to 200%. Increase determined by current progress.\n\nCan only be used once per synthesis.","DescriptionJSON":null,"EffectRange":0,"ID":4615,"IconHD":"/i/001000/001978_hr1.png","Name":"Name of the Elements","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":30,"Range":0,"Recast100ms":0,"SecondaryCostType":46,"SecondaryCostValue":871,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":4631,"IconHD":"/i/001000/001992_hr1.png","Name":"Waste Not","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":56,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":47,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4639,"IconHD":"/i/001000/001993_hr1.png","Name":"Waste Not II","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":98,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":0,"Description":"Increases efficiency of Touch actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19004,"IconHD":"/i/001000/001987_hr1.png","Name":"Innovation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":42,"CooldownGroup":0,"Description":"The next action that would complete item synthesis will instead leave one progress point remaining.\n\nEffect active for five steps.","DescriptionJSON":null,"EffectRange":0,"ID":19012,"IconHD":"/i/001000/001983_hr1.png","Name":"Final Appraisal","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":1,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases efficiency of Synthesis actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19297,"IconHD":"/i/001000/001995_hr1.png","Name":"Veneration","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"9":[{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":11,"CooldownGroup":0,"Description":"Grants a bonus to control with every increase in quality.\n\nBonus stacks up to 11 times.","DescriptionJSON":null,"EffectRange":0,"ID":253,"IconHD":"/i/001000/001951_hr1.png","Name":"Inner Quiet","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":29,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":21,"CooldownGroup":0,"Description":"Increases the efficiency of next Touch action by 100%. Effect active for three steps.","DescriptionJSON":null,"EffectRange":0,"ID":261,"IconHD":"/i/001000/001955_hr1.png","Name":"Great Strides","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":32,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Restores 5 points of durability after each step for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4575,"IconHD":"/i/001000/001985_hr1.png","Name":"Manipulation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":96,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":37,"CooldownGroup":0,"Description":"For the next three steps, Brand of the Elements efficiency is increased by up to 200%. Increase determined by current progress.\n\nCan only be used once per synthesis.","DescriptionJSON":null,"EffectRange":0,"ID":4616,"IconHD":"/i/001000/001978_hr1.png","Name":"Name of the Elements","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":30,"Range":0,"Recast100ms":0,"SecondaryCostType":46,"SecondaryCostValue":871,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":4632,"IconHD":"/i/001000/001992_hr1.png","Name":"Waste Not","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":56,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":47,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4640,"IconHD":"/i/001000/001993_hr1.png","Name":"Waste Not II","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":98,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":0,"Description":"Increases efficiency of Touch actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19005,"IconHD":"/i/001000/001987_hr1.png","Name":"Innovation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":42,"CooldownGroup":0,"Description":"The next action that would complete item synthesis will instead leave one progress point remaining.\n\nEffect active for five steps.","DescriptionJSON":null,"EffectRange":0,"ID":19013,"IconHD":"/i/001000/001983_hr1.png","Name":"Final Appraisal","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":1,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases efficiency of Synthesis actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19298,"IconHD":"/i/001000/001995_hr1.png","Name":"Veneration","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"10":[{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":11,"CooldownGroup":0,"Description":"Grants a bonus to control with every increase in quality.\n\nBonus stacks up to 11 times.","DescriptionJSON":null,"EffectRange":0,"ID":254,"IconHD":"/i/001000/001951_hr1.png","Name":"Inner Quiet","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":29,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":21,"CooldownGroup":0,"Description":"Increases the efficiency of next Touch action by 100%. Effect active for three steps.","DescriptionJSON":null,"EffectRange":0,"ID":262,"IconHD":"/i/001000/001955_hr1.png","Name":"Great Strides","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":32,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Restores 5 points of durability after each step for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4576,"IconHD":"/i/001000/001985_hr1.png","Name":"Manipulation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":96,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":37,"CooldownGroup":0,"Description":"For the next three steps, Brand of the Elements efficiency is increased by up to 200%. Increase determined by current progress.\n\nCan only be used once per synthesis.","DescriptionJSON":null,"EffectRange":0,"ID":4617,"IconHD":"/i/001000/001978_hr1.png","Name":"Name of the Elements","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":30,"Range":0,"Recast100ms":0,"SecondaryCostType":46,"SecondaryCostValue":871,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":4633,"IconHD":"/i/001000/001992_hr1.png","Name":"Waste Not","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":56,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":47,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4641,"IconHD":"/i/001000/001993_hr1.png","Name":"Waste Not II","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":98,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":0,"Description":"Increases efficiency of Touch actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19006,"IconHD":"/i/001000/001987_hr1.png","Name":"Innovation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":42,"CooldownGroup":0,"Description":"The next action that would complete item synthesis will instead leave one progress point remaining.\n\nEffect active for five steps.","DescriptionJSON":null,"EffectRange":0,"ID":19014,"IconHD":"/i/001000/001983_hr1.png","Name":"Final Appraisal","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":1,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases efficiency of Synthesis actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19299,"IconHD":"/i/001000/001995_hr1.png","Name":"Veneration","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"11":[{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":11,"CooldownGroup":0,"Description":"Grants a bonus to control with every increase in quality.\n\nBonus stacks up to 11 times.","DescriptionJSON":null,"EffectRange":0,"ID":255,"IconHD":"/i/001000/001951_hr1.png","Name":"Inner Quiet","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":29,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":21,"CooldownGroup":0,"Description":"Increases the efficiency of next Touch action by 100%. Effect active for three steps.","DescriptionJSON":null,"EffectRange":0,"ID":263,"IconHD":"/i/001000/001955_hr1.png","Name":"Great Strides","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":32,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Restores 5 points of durability after each step for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4577,"IconHD":"/i/001000/001985_hr1.png","Name":"Manipulation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":96,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":37,"CooldownGroup":0,"Description":"For the next three steps, Brand of the Elements efficiency is increased by up to 200%. Increase determined by current progress.\n\nCan only be used once per synthesis.","DescriptionJSON":null,"EffectRange":0,"ID":4618,"IconHD":"/i/001000/001978_hr1.png","Name":"Name of the Elements","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":30,"Range":0,"Recast100ms":0,"SecondaryCostType":46,"SecondaryCostValue":871,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":4634,"IconHD":"/i/001000/001992_hr1.png","Name":"Waste Not","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":56,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":47,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4642,"IconHD":"/i/001000/001993_hr1.png","Name":"Waste Not II","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":98,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":0,"Description":"Increases efficiency of Touch actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19007,"IconHD":"/i/001000/001987_hr1.png","Name":"Innovation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":42,"CooldownGroup":0,"Description":"The next action that would complete item synthesis will instead leave one progress point remaining.\n\nEffect active for five steps.","DescriptionJSON":null,"EffectRange":0,"ID":19015,"IconHD":"/i/001000/001983_hr1.png","Name":"Final Appraisal","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":1,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases efficiency of Synthesis actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19300,"IconHD":"/i/001000/001995_hr1.png","Name":"Veneration","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"12":[{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":11,"CooldownGroup":0,"Description":"Grants a bonus to control with every increase in quality.\n\nBonus stacks up to 11 times.","DescriptionJSON":null,"EffectRange":0,"ID":257,"IconHD":"/i/001000/001951_hr1.png","Name":"Inner Quiet","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":29,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":21,"CooldownGroup":0,"Description":"Increases the efficiency of next Touch action by 100%. Effect active for three steps.","DescriptionJSON":null,"EffectRange":0,"ID":265,"IconHD":"/i/001000/001955_hr1.png","Name":"Great Strides","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":32,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Restores 5 points of durability after each step for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4578,"IconHD":"/i/001000/001985_hr1.png","Name":"Manipulation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":96,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":37,"CooldownGroup":0,"Description":"For the next three steps, Brand of the Elements efficiency is increased by up to 200%. Increase determined by current progress.\n\nCan only be used once per synthesis.","DescriptionJSON":null,"EffectRange":0,"ID":4620,"IconHD":"/i/001000/001978_hr1.png","Name":"Name of the Elements","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":30,"Range":0,"Recast100ms":0,"SecondaryCostType":46,"SecondaryCostValue":871,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":4635,"IconHD":"/i/001000/001992_hr1.png","Name":"Waste Not","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":56,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":47,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4643,"IconHD":"/i/001000/001993_hr1.png","Name":"Waste Not II","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":98,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":0,"Description":"Increases efficiency of Touch actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19008,"IconHD":"/i/001000/001987_hr1.png","Name":"Innovation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":42,"CooldownGroup":0,"Description":"The next action that would complete item synthesis will instead leave one progress point remaining.\n\nEffect active for five steps.","DescriptionJSON":null,"EffectRange":0,"ID":19016,"IconHD":"/i/001000/001983_hr1.png","Name":"Final Appraisal","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":1,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases efficiency of Synthesis actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19301,"IconHD":"/i/001000/001995_hr1.png","Name":"Veneration","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"13":[{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":11,"CooldownGroup":0,"Description":"Grants a bonus to control with every increase in quality.\n\nBonus stacks up to 11 times.","DescriptionJSON":null,"EffectRange":0,"ID":256,"IconHD":"/i/001000/001951_hr1.png","Name":"Inner Quiet","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":29,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":21,"CooldownGroup":0,"Description":"Increases the efficiency of next Touch action by 100%. Effect active for three steps.","DescriptionJSON":null,"EffectRange":0,"ID":264,"IconHD":"/i/001000/001955_hr1.png","Name":"Great Strides","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":32,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Restores 5 points of durability after each step for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4579,"IconHD":"/i/001000/001985_hr1.png","Name":"Manipulation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":96,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":37,"CooldownGroup":0,"Description":"For the next three steps, Brand of the Elements efficiency is increased by up to 200%. Increase determined by current progress.\n\nCan only be used once per synthesis.","DescriptionJSON":null,"EffectRange":0,"ID":4619,"IconHD":"/i/001000/001978_hr1.png","Name":"Name of the Elements","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":30,"Range":0,"Recast100ms":0,"SecondaryCostType":46,"SecondaryCostValue":871,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":4636,"IconHD":"/i/001000/001992_hr1.png","Name":"Waste Not","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":56,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":47,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4644,"IconHD":"/i/001000/001993_hr1.png","Name":"Waste Not II","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":98,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":0,"Description":"Increases efficiency of Touch actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19009,"IconHD":"/i/001000/001987_hr1.png","Name":"Innovation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":42,"CooldownGroup":0,"Description":"The next action that would complete item synthesis will instead leave one progress point remaining.\n\nEffect active for five steps.","DescriptionJSON":null,"EffectRange":0,"ID":19017,"IconHD":"/i/001000/001983_hr1.png","Name":"Final Appraisal","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":1,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases efficiency of Synthesis actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19302,"IconHD":"/i/001000/001995_hr1.png","Name":"Veneration","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"14":[{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":11,"CooldownGroup":0,"Description":"Grants a bonus to control with every increase in quality.\n\nBonus stacks up to 11 times.","DescriptionJSON":null,"EffectRange":0,"ID":258,"IconHD":"/i/001000/001951_hr1.png","Name":"Inner Quiet","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":29,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":21,"CooldownGroup":0,"Description":"Increases the efficiency of next Touch action by 100%. Effect active for three steps.","DescriptionJSON":null,"EffectRange":0,"ID":266,"IconHD":"/i/001000/001955_hr1.png","Name":"Great Strides","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":32,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Restores 5 points of durability after each step for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4580,"IconHD":"/i/001000/001985_hr1.png","Name":"Manipulation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":96,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":37,"CooldownGroup":0,"Description":"For the next three steps, Brand of the Elements efficiency is increased by up to 200%. Increase determined by current progress.\n\nCan only be used once per synthesis.","DescriptionJSON":null,"EffectRange":0,"ID":4621,"IconHD":"/i/001000/001978_hr1.png","Name":"Name of the Elements","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":30,"Range":0,"Recast100ms":0,"SecondaryCostType":46,"SecondaryCostValue":871,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":4637,"IconHD":"/i/001000/001992_hr1.png","Name":"Waste Not","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":56,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":47,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":19002,"IconHD":"/i/001000/001993_hr1.png","Name":"Waste Not II","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":98,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":0,"Description":"Increases efficiency of Touch actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19010,"IconHD":"/i/001000/001987_hr1.png","Name":"Innovation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":42,"CooldownGroup":0,"Description":"The next action that would complete item synthesis will instead leave one progress point remaining.\n\nEffect active for five steps.","DescriptionJSON":null,"EffectRange":0,"ID":19018,"IconHD":"/i/001000/001983_hr1.png","Name":"Final Appraisal","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":1,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases efficiency of Synthesis actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19303,"IconHD":"/i/001000/001995_hr1.png","Name":"Veneration","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"15":[{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":11,"CooldownGroup":0,"Description":"Grants a bonus to control with every increase in quality.\n\nBonus stacks up to 11 times.","DescriptionJSON":null,"EffectRange":0,"ID":259,"IconHD":"/i/001000/001951_hr1.png","Name":"Inner Quiet","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":29,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":21,"CooldownGroup":0,"Description":"Increases the efficiency of next Touch action by 100%. Effect active for three steps.","DescriptionJSON":null,"EffectRange":0,"ID":267,"IconHD":"/i/001000/001955_hr1.png","Name":"Great Strides","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":32,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Restores 5 points of durability after each step for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4581,"IconHD":"/i/001000/001985_hr1.png","Name":"Manipulation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":96,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":37,"CooldownGroup":0,"Description":"For the next three steps, Brand of the Elements efficiency is increased by up to 200%. Increase determined by current progress.\n\nCan only be used once per synthesis.","DescriptionJSON":null,"EffectRange":0,"ID":4622,"IconHD":"/i/001000/001978_hr1.png","Name":"Name of the Elements","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":30,"Range":0,"Recast100ms":0,"SecondaryCostType":46,"SecondaryCostValue":871,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":4638,"IconHD":"/i/001000/001992_hr1.png","Name":"Waste Not","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":56,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":47,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":19003,"IconHD":"/i/001000/001993_hr1.png","Name":"Waste Not II","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":98,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":0,"Description":"Increases efficiency of Touch actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19011,"IconHD":"/i/001000/001987_hr1.png","Name":"Innovation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":42,"CooldownGroup":0,"Description":"The next action that would complete item synthesis will instead leave one progress point remaining.\n\nEffect active for five steps.","DescriptionJSON":null,"EffectRange":0,"ID":19019,"IconHD":"/i/001000/001983_hr1.png","Name":"Final Appraisal","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":1,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases efficiency of Synthesis actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19304,"IconHD":"/i/001000/001995_hr1.png","Name":"Veneration","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"16":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":0,"Description":"Survey the landscape to locate mineral deposits and rocky outcrops. Activates automatically when class is changed to miner.","DescriptionJSON":null,"EffectRange":0,"ID":227,"IconHD":"/i/001000/001001_hr1.png","Name":"Prospect","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":3,"CooldownGroup":66,"Description":"Survey the landscape to locate the nearest mineral deposit or rocky outcrop within skill range. Can only execute while Prospect is active.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":228,"IconHD":"/i/001000/001002_hr1.png","Name":"Lay of the Land","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":32,"SecondaryCostValue":225,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":12,"CooldownGroup":0,"Description":"Reveals the conditions for obtaining HQ items while gathering.","DescriptionJSON":null,"EffectRange":0,"ID":230,"IconHD":"/i/001000/001004_hr1.png","Name":"Preparation","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":25,"CooldownGroup":0,"Description":"Grants another gathering attempt. When gathering collectables, restores 1 integrity.","DescriptionJSON":null,"EffectRange":0,"ID":232,"IconHD":"/i/001000/001009_hr1.png","Name":"Solid Reason","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":300,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":25,"CooldownGroup":0,"Description":"Increases the chance of obtaining regular or HQ items to 100%. Does not apply to items at 0%. Can only be activated after chain #4.","DescriptionJSON":null,"EffectRange":0,"ID":233,"IconHD":"/i/001000/001008_hr1.png","Name":"Deep Vigor","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":9,"SecondaryCostValue":4,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":0,"Description":"Increases the chance of obtaining items while gathering by 5%. Does not apply to items at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":235,"IconHD":"/i/001000/001015_hr1.png","Name":"Sharp Vision","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":50,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":5,"CooldownGroup":0,"Description":"Increases the chance of obtaining items while gathering by 15%. Does not apply to items at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":237,"IconHD":"/i/001000/001016_hr1.png","Name":"Sharp Vision II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":46,"CooldownGroup":0,"Description":"Further survey the landscape to uncover unspoiled, legendary, and clouded mineral deposits and rocky outcrops.","DescriptionJSON":null,"EffectRange":0,"ID":238,"IconHD":"/i/001000/001019_hr1.png","Name":"Truth of Mountains","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":0,"Description":"Increases the number of items obtained when gathering by one.","DescriptionJSON":null,"EffectRange":0,"ID":239,"IconHD":"/i/001000/001006_hr1.png","Name":"King's Yield","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":400,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":0,"Description":"Increases the number of items obtained when gathering by two.","DescriptionJSON":null,"EffectRange":0,"ID":241,"IconHD":"/i/001000/001007_hr1.png","Name":"King's Yield II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":500,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases the chance of obtaining HQ items while gathering by 10%. Does not increase chances for items which start at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":242,"IconHD":"/i/001000/001013_hr1.png","Name":"Unearth","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":0,"Description":"Increases the chance of obtaining HQ items while gathering by 30%. Does not increase chances for items which start at 0%.\n\n\n\nCannot be used with Unearth.","DescriptionJSON":null,"EffectRange":0,"ID":243,"IconHD":"/i/001000/001014_hr1.png","Name":"Unearth II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":300,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":63,"CooldownGroup":0,"Description":"Increases the chance of obtaining HQ items while gathering by 30% - 100%. Increase is determined by your perception rating. Does not increase chances for items which start at 0%.\n\n\n\nCannot be used with Unearth.","DescriptionJSON":null,"EffectRange":0,"ID":270,"IconHD":"/i/001000/001034_hr1.png","Name":"Unearth III","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":300,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":0,"Description":"Increases the number of items obtained on your next gathering attempt by one, two, or three. Number determined by your gathering rating.","DescriptionJSON":null,"EffectRange":0,"ID":272,"IconHD":"/i/001000/001035_hr1.png","Name":"Bountiful Yield II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":67,"CooldownGroup":0,"Description":"Increases the chance of obtaining an HQ item on your next gathering attempt. Increase is random and is only overwritten if the value is higher than the current one. Does not increase chances for items which start at 0%.\n\n\n\nCan be used with any action that increases chance of obtaining an HQ item.","DescriptionJSON":null,"EffectRange":0,"ID":274,"IconHD":"/i/001000/001036_hr1.png","Name":"Nald'thal's Counsel","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":10,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":20,"CooldownGroup":0,"Description":"Increases elemental shard , crystal, and cluster yields by 3 .\n\nCannot be executed if the gathering node does not yield shards , crystals, or clusters .","DescriptionJSON":null,"EffectRange":0,"ID":280,"IconHD":"/i/001000/001043_hr1.png","Name":"the Twelve's Bounty","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":150,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":5,"CooldownGroup":66,"Description":"Survey the landscape to locate the highest-level mineral deposit or rocky outcrop within skill range. Can only execute while Prospect is active.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":291,"IconHD":"/i/001000/001003_hr1.png","Name":"Lay of the Land II","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":32,"SecondaryCostValue":225,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":10,"CooldownGroup":0,"Description":"Increases the chance of obtaining items while gathering by 50%. Does not apply to items at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":295,"IconHD":"/i/001000/001017_hr1.png","Name":"Sharp Vision III","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":250,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":8,"CooldownGroup":0,"Description":"Tread quietly, enabling you to avoid enemies up to four levels above your own.","DescriptionJSON":null,"EffectRange":0,"ID":303,"IconHD":"/i/001000/001042_hr1.png","Name":"Sneak","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":38,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":23,"CooldownGroup":0,"Description":"Increases the chance of obtaining items on your next gathering attempt by 15%. Does not apply to items at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":4072,"IconHD":"/i/001000/001020_hr1.png","Name":"Clear Vision","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":50,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":24,"CooldownGroup":0,"Description":"Increases the number of items obtained on your next gathering attempt by one.","DescriptionJSON":null,"EffectRange":0,"ID":4073,"IconHD":"/i/001000/001021_hr1.png","Name":"Bountiful Yield","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":55,"CooldownGroup":0,"Description":"Uncovers a gathering node's hidden items. Can only be executed after HQ chain #2.","DescriptionJSON":null,"EffectRange":0,"ID":4081,"IconHD":"/i/001000/001029_hr1.png","Name":"Luck of the Mountaineer","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":10,"SecondaryCostValue":2,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":58,"CooldownGroup":0,"Description":"Increases the chance of obtaining an HQ item on your next gathering attempt by 10%. Does not increase chances for items which start at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":4082,"IconHD":"/i/001000/001022_hr1.png","Name":"Dredge","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":0,"Description":"Increases the chance of obtaining an HQ item on your next gathering attempt by 20%. Does not increase chances for items which start at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":4083,"IconHD":"/i/001000/001023_hr1.png","Name":"Dredge II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":77,"CooldownGroup":0,"Description":"Reduces the chance of obtaining HQ items to 0% but increases item yield by up to three. Number determined by your perception rating.\n\nDoes not increase item yield if all gathering node items start at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":4587,"IconHD":"/i/001000/001038_hr1.png","Name":"Pick Clean","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":250,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":74,"CooldownGroup":70,"Description":"Increases elemental shard, crystal, and cluster yields by a random amount.\n\nEffect can be stacked with The Twelve's Bounty.\n\nCannot be executed if the gathering node does not yield shards, crystals, or clusters.","DescriptionJSON":null,"EffectRange":0,"ID":4589,"IconHD":"/i/001000/001039_hr1.png","Name":"The Giving Land","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":1800,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":78,"CooldownGroup":0,"Description":"Increases the chance of obtaining items while gathering by 10%, while increasing the chance of obtaining HQ items by 20%. Does not increase chances for items which start at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":4605,"IconHD":"/i/001000/001041_hr1.png","Name":"Mind of the Mountaineer","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":300,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":0,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Increases collectability of an item. Increase is determined by your gathering rating.\n\nReduces integrity by 1.","DescriptionJSON":null,"EffectRange":0,"ID":22182,"IconHD":"/i/001000/001901_hr1.png","Name":"Scour","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":0,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Increases the collectability of an item. Increase is a random amount ranging from 50% to 150% of the effectiveness of Scour.\n\nReduces integrity by 1.","DescriptionJSON":null,"EffectRange":0,"ID":22183,"IconHD":"/i/001000/001902_hr1.png","Name":"Brazen Prospector","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":0,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Increases collectability of an item. Increase is 75% of the effectiveness of Scour.\n\nReduces integrity by 1. There is a chance integrity is unaffected, determined by your gathering rating.","DescriptionJSON":null,"EffectRange":0,"ID":22184,"IconHD":"/i/001000/001903_hr1.png","Name":"Meticulous Prospector","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Improves next item collectability increase. Effect is determined by your perception rating.","DescriptionJSON":null,"EffectRange":0,"ID":22185,"IconHD":"/i/001000/001904_hr1.png","Name":"Scrutiny","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":0,"SecondaryCostType":46,"SecondaryCostValue":757,"TargetArea":0}],"17":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":0,"Description":"Survey the landscape to locate mature trees and lush vegetation. Activates automatically when class is changed to botanist.","DescriptionJSON":null,"EffectRange":0,"ID":210,"IconHD":"/i/001000/001051_hr1.png","Name":"Triangulate","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":3,"CooldownGroup":66,"Description":"Survey the landscape to locate the nearest mature tree or lush vegetation within skill range. Can only execute while Triangulate is active.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":211,"IconHD":"/i/001000/001052_hr1.png","Name":"Arbor Call","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":32,"SecondaryCostValue":217,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":12,"CooldownGroup":0,"Description":"Reveals the conditions for obtaining HQ items while gathering.","DescriptionJSON":null,"EffectRange":0,"ID":213,"IconHD":"/i/001000/001054_hr1.png","Name":"Preparation","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":25,"CooldownGroup":0,"Description":"Grants another gathering attempt. When gathering collectables, restores 1 integrity.","DescriptionJSON":null,"EffectRange":0,"ID":215,"IconHD":"/i/001000/001059_hr1.png","Name":"Ageless Words","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":300,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":25,"CooldownGroup":0,"Description":"Increases the chance of obtaining regular or HQ items to 100%. Does not apply to items at 0%. Can only be activated after chain #4.","DescriptionJSON":null,"EffectRange":0,"ID":216,"IconHD":"/i/001000/001058_hr1.png","Name":"Brunt Force","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":9,"SecondaryCostValue":4,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":0,"Description":"Increases the chance of obtaining items while gathering by 5%. Does not apply to items at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":218,"IconHD":"/i/001000/001065_hr1.png","Name":"Field Mastery","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":50,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":5,"CooldownGroup":0,"Description":"Increases the chance of obtaining items while gathering by 15%. Does not apply to items at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":220,"IconHD":"/i/001000/001066_hr1.png","Name":"Field Mastery II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":46,"CooldownGroup":0,"Description":"Further survey the landscape to uncover unspoiled, legendary, and clouded mature trees and lush vegetation.","DescriptionJSON":null,"EffectRange":0,"ID":221,"IconHD":"/i/001000/001069_hr1.png","Name":"Truth of Forests","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":0,"Description":"Increases the number of items obtained when gathering by one.","DescriptionJSON":null,"EffectRange":0,"ID":222,"IconHD":"/i/001000/001056_hr1.png","Name":"Blessed Harvest","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":400,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":0,"Description":"Increases the number of items obtained when gathering by two.","DescriptionJSON":null,"EffectRange":0,"ID":224,"IconHD":"/i/001000/001057_hr1.png","Name":"Blessed Harvest II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":500,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases the chance of obtaining HQ items while gathering by 10%. Does not increase chances for items which start at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":225,"IconHD":"/i/001000/001063_hr1.png","Name":"Leaf Turn","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":0,"Description":"Increases the chance of obtaining HQ items while gathering by 30%. Does not increase chances for items which start at 0%.\n\n\n\nCannot be used with Leaf Turn.","DescriptionJSON":null,"EffectRange":0,"ID":226,"IconHD":"/i/001000/001064_hr1.png","Name":"Leaf Turn II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":300,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":63,"CooldownGroup":0,"Description":"Increases the chance of obtaining HQ items while gathering by 30% - 100%. Increase is determined by your perception rating. Does not increase chances for items which start at 0%.\n\n\n\nCannot be used with Leaf Turn.","DescriptionJSON":null,"EffectRange":0,"ID":271,"IconHD":"/i/001000/001084_hr1.png","Name":"Leaf Turn III","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":300,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":0,"Description":"Increases the number of items obtained on your next gathering attempt by one, two, or three. Number determined by your gathering rating.","DescriptionJSON":null,"EffectRange":0,"ID":273,"IconHD":"/i/001000/001085_hr1.png","Name":"Bountiful Harvest II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":67,"CooldownGroup":0,"Description":"Increases the chance of obtaining an HQ item on your next gathering attempt. Increase is random and is only overwritten if the value is higher than the current one. Does not increase chances for items which start at 0%.\n\n\n\nCan be used with any action that increases chance of obtaining an HQ item.","DescriptionJSON":null,"EffectRange":0,"ID":275,"IconHD":"/i/001000/001086_hr1.png","Name":"Nophica's Counsel","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":10,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":20,"CooldownGroup":0,"Description":"Increases elemental shard , crystal, and cluster yields by 3 .\n\nCannot be executed if the gathering node does not yield shards , crystals, or clusters .","DescriptionJSON":null,"EffectRange":0,"ID":282,"IconHD":"/i/001000/001093_hr1.png","Name":"the Twelve's Bounty","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":150,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":5,"CooldownGroup":66,"Description":"Survey the landscape to locate the highest-level mature tree or lush vegetation within skill range. Can only execute while Triangulate is active.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":290,"IconHD":"/i/001000/001053_hr1.png","Name":"Arbor Call II","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":32,"SecondaryCostValue":217,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":10,"CooldownGroup":0,"Description":"Increases the chance of obtaining items while gathering by 50%. Does not apply to items at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":294,"IconHD":"/i/001000/001067_hr1.png","Name":"Field Mastery III","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":250,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":8,"CooldownGroup":0,"Description":"Tread quietly, enabling you to avoid enemies up to four levels above your own.","DescriptionJSON":null,"EffectRange":0,"ID":304,"IconHD":"/i/001000/001092_hr1.png","Name":"Sneak","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":38,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":23,"CooldownGroup":0,"Description":"Increases the chance of obtaining items on your next gathering attempt by 15%. Does not apply to items at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":4086,"IconHD":"/i/001000/001070_hr1.png","Name":"Flora Mastery","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":50,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":24,"CooldownGroup":0,"Description":"Increases the number of items obtained on your next gathering attempt by one.","DescriptionJSON":null,"EffectRange":0,"ID":4087,"IconHD":"/i/001000/001071_hr1.png","Name":"Bountiful Harvest","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":55,"CooldownGroup":0,"Description":"Uncovers a gathering node's hidden items. Can only be executed after HQ chain #2.","DescriptionJSON":null,"EffectRange":0,"ID":4095,"IconHD":"/i/001000/001079_hr1.png","Name":"Luck of the Pioneer","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":10,"SecondaryCostValue":2,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":58,"CooldownGroup":0,"Description":"Increases the chance of obtaining an HQ item on your next gathering attempt by 10%. Does not increase chances for items which start at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":4096,"IconHD":"/i/001000/001072_hr1.png","Name":"Prune","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":0,"Description":"Increases the chance of obtaining an HQ item on your next gathering attempt by 20%. Does not increase chances for items which start at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":4097,"IconHD":"/i/001000/001073_hr1.png","Name":"Prune II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":77,"CooldownGroup":0,"Description":"Reduces the chance of obtaining HQ items to 0% but increases item yield by up to three. Number determined by your perception rating.\n\nDoes not increase item yield if all gathering node items start at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":4588,"IconHD":"/i/001000/001088_hr1.png","Name":"Pick Clean","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":250,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":74,"CooldownGroup":70,"Description":"Increases elemental shard, crystal, and cluster yields by a random amount.\n\nEffect can be stacked with The Twelve's Bounty.\n\nCannot be executed if the gathering node does not yield shards, crystals, or clusters.","DescriptionJSON":null,"EffectRange":0,"ID":4590,"IconHD":"/i/001000/001089_hr1.png","Name":"The Giving Land","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":1800,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":78,"CooldownGroup":0,"Description":"Increases the chance of obtaining items while gathering by 10%, while increasing the chance of obtaining HQ items by 20%. Does not increase chances for items which start at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":4606,"IconHD":"/i/001000/001091_hr1.png","Name":"Mind of the Pioneer","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":300,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":0,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Increases collectability of an item. Increase is determined by your gathering rating.\n\nReduces integrity by 1.","DescriptionJSON":null,"EffectRange":0,"ID":22186,"IconHD":"/i/001000/001901_hr1.png","Name":"Scour","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":0,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Increases the collectability of an item. Increase is a random amount ranging from 50% to 150% of the effectiveness of Scour.\n\nReduces integrity by 1.","DescriptionJSON":null,"EffectRange":0,"ID":22187,"IconHD":"/i/001000/001902_hr1.png","Name":"Brazen Woodsman","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":0,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Increases collectability of an item. Increase is 75% of the effectiveness of Scour.\n\nReduces integrity by 1. There is a chance integrity is unaffected, determined by your gathering rating.","DescriptionJSON":null,"EffectRange":0,"ID":22188,"IconHD":"/i/001000/001903_hr1.png","Name":"Meticulous Woodsman","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Improves next item collectability increase. Effect is determined by your perception rating.","DescriptionJSON":null,"EffectRange":0,"ID":22189,"IconHD":"/i/001000/001904_hr1.png","Name":"Scrutiny","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":0,"SecondaryCostType":46,"SecondaryCostValue":757,"TargetArea":0}],"18":[{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":63,"CooldownGroup":68,"Description":"Use any fish already hooked to your line to attract even larger prey.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":268,"IconHD":"/i/001000/001117_hr1.png","Name":"Mooch II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":1800,"SecondaryCostType":56,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Hook multiple fish in a single cast. Yield is determined by fish type and your gathering rating. Some fish cannot be double hooked.","DescriptionJSON":null,"EffectRange":0,"ID":269,"IconHD":"/i/001000/001118_hr1.png","Name":"Double Hook","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":400,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":0,"Description":"Select the bait to apply to your line.","DescriptionJSON":null,"EffectRange":0,"ID":288,"IconHD":"/i/001000/001106_hr1.png","Name":"Bait","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":28,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":0,"Description":"Cast your line and begin fishing.","DescriptionJSON":null,"EffectRange":0,"ID":289,"IconHD":"/i/001000/001101_hr1.png","Name":"Cast","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":21,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":0,"Description":"Attempt to hook the fish nibbling on the bait.","DescriptionJSON":null,"EffectRange":0,"ID":296,"IconHD":"/i/001000/001103_hr1.png","Name":"Hook","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":23,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":25,"CooldownGroup":0,"Description":"Use the fish already hooked to your line to attract even larger prey.","DescriptionJSON":null,"EffectRange":0,"ID":297,"IconHD":"/i/001000/001104_hr1.png","Name":"Mooch","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":24,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":0,"Description":"Abandon fishing and stow your equipment.","DescriptionJSON":null,"EffectRange":0,"ID":299,"IconHD":"/i/001000/001102_hr1.png","Name":"Quit","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":22,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":22,"CooldownGroup":0,"Description":"Unhook a fish (including all those of the same type subsequently caught at your current location) and release it back into the wild.\n\nHas no effect on fish that have yet to be logged in the Fish Guide.","DescriptionJSON":null,"EffectRange":0,"ID":300,"IconHD":"/i/001000/001108_hr1.png","Name":"Release","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":36,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":8,"CooldownGroup":0,"Description":"Tread quietly, enabling you to avoid enemies up to four levels above your own.","DescriptionJSON":null,"EffectRange":0,"ID":305,"IconHD":"/i/001000/001134_hr1.png","Name":"Sneak","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":38,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":0,"Description":"Lights up the tip of your fishing rod.","DescriptionJSON":null,"EffectRange":0,"ID":2135,"IconHD":"/i/001000/001107_hr1.png","Name":"Cast Light","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":31,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":36,"CooldownGroup":0,"Description":"Adds extra hooks to the line, making it possible to land normally uncatchable fish and items.","DescriptionJSON":null,"EffectRange":0,"ID":4100,"IconHD":"/i/001000/001109_hr1.png","Name":"Snagging","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Readies the catch to retain as a collectable.","DescriptionJSON":null,"EffectRange":0,"ID":4101,"IconHD":"/i/001000/001110_hr1.png","Name":"Collect","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":44,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases the chance of landing an HQ fish by 50% while reducing Hook efficiency by 40%.\n\nDuration: 60s\n\n\n\nCancels current mooching opportunity.","DescriptionJSON":null,"EffectRange":0,"ID":4102,"IconHD":"/i/001000/001113_hr1.png","Name":"Patience","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Negates the Inefficient Hooking status. Has no effect on certain fish with a weak bite.","DescriptionJSON":null,"EffectRange":0,"ID":4103,"IconHD":"/i/001000/001115_hr1.png","Name":"Powerful Hookset","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":50,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":0,"Description":"Reduces the amount of time for the next fish to bite.\n\n\n\nCancels current mooching opportunity.","DescriptionJSON":null,"EffectRange":0,"ID":4104,"IconHD":"/i/001000/001111_hr1.png","Name":"Chum","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":145,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":57,"CooldownGroup":0,"Description":"Open your five senses to the surrounding environment, detecting fish in a given body of water without regard for their normal hours of activity.\n\nHas no effect on certain fish.\n\nDuration: 60s\n\n\n\nCancels current mooching opportunity.","DescriptionJSON":null,"EffectRange":0,"ID":4105,"IconHD":"/i/001000/001112_hr1.png","Name":"Fish Eyes","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":550,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":0,"Description":"Increases the chance of landing an HQ fish by 80% while reducing Hook efficiency by 75%. Increases the likelihood of catching larger fish.\n\nDuration: 145s\n\n\n\nCancels current mooching opportunity.","DescriptionJSON":null,"EffectRange":0,"ID":4106,"IconHD":"/i/001000/001114_hr1.png","Name":"Patience II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":560,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Negates the Inefficient Hooking status. Has no effect on certain fish with a strong bite.","DescriptionJSON":null,"EffectRange":0,"ID":4179,"IconHD":"/i/001000/001116_hr1.png","Name":"Precision Hookset","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":50,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":77,"CooldownGroup":0,"Description":"Ensures you catch the same fish you previously caught. Has no effect on some fish.\n\nOverwrites the effect of Veteran Trade upon execution.","DescriptionJSON":null,"EffectRange":0,"ID":4591,"IconHD":"/i/001000/001122_hr1.png","Name":"Identical Gig","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":350,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":71,"CooldownGroup":0,"Description":"Prevent hooking the same fish you just caught. Has no effect on some fish.\n\nDuration: 15s\n\nEffect ends after hooking a fish. Cancels current mooching opportunity.\n\nOverwrites the effect of Identical Cast upon execution.","DescriptionJSON":null,"EffectRange":0,"ID":4595,"IconHD":"/i/001000/001123_hr1.png","Name":"Surface Slap","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":1803,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":79,"CooldownGroup":0,"Description":"Ensures you hook the same fish you previously caught. Has no effect on some fish.\n\nDuration: 15s\n\nEffect ends after hooking a fish, and cannot be used for consecutive casts. Cancels current mooching opportunity.\n\nEffect is canceled if the same fish cannot be caught at your current fishing location.\n\nOverwrites the effect of Surface Slap upon execution.","DescriptionJSON":null,"EffectRange":0,"ID":4596,"IconHD":"/i/001000/001124_hr1.png","Name":"Identical Cast","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":350,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":1804,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":61,"CooldownGroup":0,"Description":"Attempt to catch a fish using your gig.","DescriptionJSON":null,"EffectRange":0,"ID":7632,"IconHD":"/i/001000/001119_hr1.png","Name":"Gig","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":61,"CooldownGroup":0,"Description":"Replace the head on your gig with one of a different size.","DescriptionJSON":null,"EffectRange":0,"ID":7634,"IconHD":"/i/001000/001121_hr1.png","Name":"Gig Head","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":61,"CooldownGroup":0,"Description":"Survey the seas to locate teeming waters. Activates automatically when class is changed to fisher.","DescriptionJSON":null,"EffectRange":0,"ID":7903,"IconHD":"/i/001000/001125_hr1.png","Name":"Fathom","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":61,"CooldownGroup":66,"Description":"Survey the seas to locate the nearest teeming waters within skill range. Can only execute while Fathom is active.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":7904,"IconHD":"/i/001000/001126_hr1.png","Name":"Shark Eye","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":32,"SecondaryCostValue":1166,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":66,"Description":"Survey the landscape to locate the highest-level teeming waters within skill range. Can only execute while Fathom is active.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":7905,"IconHD":"/i/001000/001127_hr1.png","Name":"Shark Eye II","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":32,"SecondaryCostValue":1166,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":63,"CooldownGroup":0,"Description":"Prevent catching the same fish you just caught. Has no effect on some fish.\n\nOverwrites the effect of Identical Gig upon execution.","DescriptionJSON":null,"EffectRange":0,"ID":7906,"IconHD":"/i/001000/001128_hr1.png","Name":"Veteran Trade","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":0,"Description":"Increases the number of items obtained on your next spearfishing attempt. Yield is determined by fish type and your gathering rating. Some fish cannot be double speared.","DescriptionJSON":null,"EffectRange":0,"ID":7907,"IconHD":"/i/001000/001129_hr1.png","Name":"Bountiful Catch","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":64,"CooldownGroup":0,"Description":"Grants another spearfishing attempt.","DescriptionJSON":null,"EffectRange":0,"ID":7908,"IconHD":"/i/001000/001130_hr1.png","Name":"Calm Waters","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":300,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":69,"CooldownGroup":0,"Description":"Increases the chance of landing a large catch on your next spearfishing attempt.","DescriptionJSON":null,"EffectRange":0,"ID":7909,"IconHD":"/i/001000/001131_hr1.png","Name":"Nature's Bounty","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":67,"CooldownGroup":0,"Description":"Occasionally discover treasure maps while spearfishing.","DescriptionJSON":null,"EffectRange":0,"ID":7910,"IconHD":"/i/001000/001132_hr1.png","Name":"Salvage","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":44,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Further survey the seas to uncover the nearest swimming shadows within skill range.","DescriptionJSON":null,"EffectRange":0,"ID":7911,"IconHD":"/i/001000/001133_hr1.png","Name":"Truth of Oceans","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":22,"CooldownGroup":0,"Description":"Select fish to be automatically released upon catching them at a given fishing hole.\n\nSettings are reset upon putting away rod.\n\nHas no effect on fish that have yet to be logged in the Fish Guide.","DescriptionJSON":null,"EffectRange":0,"ID":19264,"IconHD":"/i/001000/001135_hr1.png","Name":"Release List","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0}],"19":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":21,"Description":"Take all damage intended for another party member.\n\nDuration: 12s\n\nOath Gauge Cost: 50\n\nCan only be executed when member is closer than 10 yalms. Does not activate with certain attacks.","DescriptionJSON":null,"EffectRange":0,"ID":27,"IconHD":"/i/002000/002501_hr1.png","Name":"Cover","PreservesCombo":1,"PrimaryCostType":41,"PrimaryCostValue":50,"Range":10,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":9,"Description":"Delivers an attack with a potency of 100.\n\nPotency increases up to 370 as own HP nears maximum.
\nAdditional Effect: Restores MP","DescriptionJSON":null,"EffectRange":0,"ID":29,"IconHD":"/i/002000/002503_hr1.png","Name":"Spirits Within","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":25,"Description":"Renders you impervious to most attacks.\n\nDuration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":30,"IconHD":"/i/002000/002502_hr1.png","Name":"Hallowed Ground","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":4200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":15,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Riot Blade\n\nCombo Potency: 390\n\nCombo Bonus: Damage over time\n\nPotency: 85\n\nDuration: 21s","DescriptionJSON":null,"EffectRange":0,"ID":3538,"IconHD":"/i/002000/002506_hr1.png","Name":"Goring Blade","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":15,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Riot Blade\n\nCombo Potency: 550
\nCombo Bonus: Grants 3 stacks of Sword Oath
\n
\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":3539,"IconHD":"/i/002000/002507_hr1.png","Name":"Royal Authority","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":56,"CooldownGroup":17,"Description":"Upon HP recovery via healing magic cast by self or a party member, a protective barrier is cast on all party members within a radius of 15 yalms.\n\nDuration: 30s\n\nBarrier Effect: Prevents damage up to 10% of your maximum HP\n\nDuration: 30s\n\nEffect ends upon additional HP recovery via healing magic.","DescriptionJSON":null,"EffectRange":0,"ID":3540,"IconHD":"/i/002000/002508_hr1.png","Name":"Divine Veil","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":58,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 1,200\n\nAdditional Effect: Restores to self 50% of HP restored to target if target is a party member","DescriptionJSON":null,"EffectRange":0,"ID":3541,"IconHD":"/i/002000/002509_hr1.png","Name":"Clemency","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":40,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":1,"Description":"Block incoming attacks.\n\nDuration: 6 s\n\nOath Gauge Cost: 50","DescriptionJSON":null,"EffectRange":0,"ID":3542,"IconHD":"/i/002000/002510_hr1.png","Name":"Sheltron","PreservesCombo":1,"PrimaryCostType":41,"PrimaryCostValue":50,"Range":0,"Recast100ms":50,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":62,"CooldownGroup":5,"Description":"Reduces target party member's damage taken by 10%.\n\nDuration: 6s\n\nAdditional Effect: Increases damage reduction by another 50% of the effect of Rampart or Sentinel if either are active\n\nOath Gauge Cost: 50","DescriptionJSON":null,"EffectRange":0,"ID":7382,"IconHD":"/i/002000/002512_hr1.png","Name":"Intervention","PreservesCombo":1,"PrimaryCostType":41,"PrimaryCostValue":50,"Range":30,"Recast100ms":100,"SecondaryCostType":62,"SecondaryCostValue":209,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":15,"Description":"Deals unaspected damage with a potency of 150. Potency increases up to 550 as MP nears maximum.\n\nAdditional Effect: Increases attack magic and healing magic potency by 50% if current MP is at 80% or higher , and allows spells to be cast immediately Duration: 12s","DescriptionJSON":null,"EffectRange":0,"ID":7383,"IconHD":"/i/002000/002513_hr1.png","Name":"Requiescat","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 350.","DescriptionJSON":null,"EffectRange":0,"ID":7384,"IconHD":"/i/002000/002514_hr1.png","Name":"Holy Spirit","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":40,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":7,"ClassJobLevel":70,"CooldownGroup":22,"Description":"Increases block rate to 100% and creates a designated area in a cone behind you in which party members will only suffer 85% of all damage inflicted.\n\nDuration: 18s\n\nEffect ends upon using another action or moving (including facing a different direction).\n\nCancels auto-attack upon execution.","DescriptionJSON":null,"EffectRange":8,"ID":7385,"IconHD":"/i/002000/002515_hr1.png","Name":"Passage of Arms","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7381,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby enemies.\n\nCombo Action: Total Eclipse\n\nCombo Potency: 220
\nCombo Bonus: Restores MP","DescriptionJSON":null,"EffectRange":5,"ID":16457,"IconHD":"/i/002000/002516_hr1.png","Name":"Prominence","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":2,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 250 to all nearby enemies.","DescriptionJSON":null,"EffectRange":5,"ID":16458,"IconHD":"/i/002000/002517_hr1.png","Name":"Holy Circle","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":40,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 800 to target and all enemies nearby it.\n\nCan only be executed while under the effect of Requiescat. Effect fades upon execution.","DescriptionJSON":null,"EffectRange":5,"ID":16459,"IconHD":"/i/002000/002518_hr1.png","Name":"Confiteor","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":40,"Range":25,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1368,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 550.\n\nAdditional Effect: Restores MP\n\nCan only be executed while under the effect of Sword Oath.","DescriptionJSON":null,"EffectRange":0,"ID":16460,"IconHD":"/i/002000/002519_hr1.png","Name":"Atonement","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1902,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":74,"CooldownGroup":10,"Description":"Rushes target and delivers an attack with a potency of 200.\n\nMaximum Charges: 2\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":16461,"IconHD":"/i/002000/002520_hr1.png","Name":"Intervene","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"20":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":2,"Description":"Increases damage dealt by 10 %.\n\nCannot be used with Fists of Earth or Fists of Wind, and shares a recast timer with both.\n\nEffect ends upon reuse.","DescriptionJSON":null,"EffectRange":0,"ID":63,"IconHD":"/i/000000/000205_hr1.png","Name":"Fists of Fire","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":30,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 150 to all nearby enemies.\n\nCan only be executed when in coeurl form.\n\nAdditional Effect: Changes form to opo-opo\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":5,"ID":70,"IconHD":"/i/002000/002529_hr1.png","Name":"Rockbreaker","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":109,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":9,"Description":"Rushes target and delivers an attack with a potency of 100. Maximum Charges: 2
\n
\n Cannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":71,"IconHD":"/i/002000/002526_hr1.png","Name":"Shoulder Tackle","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 230.\n\n260 when executed from a target's flank.\n\nOpo-opo Form Bonus: Grants Leaden Fist\n\nDuration: 30s\n\nAdditional Effect: Changes form to raptor\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":74,"IconHD":"/i/002000/002528_hr1.png","Name":"Dragon Kick","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":5,"Description":"Delivers an attack with a potency of 400.","DescriptionJSON":null,"EffectRange":0,"ID":3543,"IconHD":"/i/002000/002531_hr1.png","Name":"Tornado Kick","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":450,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":56,"CooldownGroup":10,"Description":"Delivers an attack with a potency of 250 to all nearby enemies.","DescriptionJSON":null,"EffectRange":5,"ID":3545,"IconHD":"/i/002000/002533_hr1.png","Name":"Elixir Field","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":58,"Description":"Opens a chakra. Up to five chakra can be opened at once.\n\nOpens all five chakra when used outside of combat.\n\nShares a recast timer with all other weaponskills.","DescriptionJSON":null,"EffectRange":0,"ID":3546,"IconHD":"/i/002000/002534_hr1.png","Name":"Meditation","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 340.\n\nCan only be executed while in combat and under the effect of the Fifth Chakra. The five chakra close upon execution.\n\nShares a recast timer with Enlightenment.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":3547,"IconHD":"/i/002000/002535_hr1.png","Name":"the Forbidden Chakra","PreservesCombo":1,"PrimaryCostType":28,"PrimaryCostValue":5,"Range":"-1","Recast100ms":10,"SecondaryCostType":42,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":52,"CooldownGroup":58,"Description":"Grants Formless Fist to self, allowing the execution of a weaponskill that requires a certain form, without being in that form.\n\nDuration: 15s\n\nAny additional effects associated with the executed action will also be applied.","DescriptionJSON":null,"EffectRange":0,"ID":4262,"IconHD":"/i/002000/002536_hr1.png","Name":"Form Shift","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":64,"CooldownGroup":14,"Description":"Grants 3 stacks of Riddle of Earth, each stack reducing damage taken by 10% and nullifying all action direction requirements.\n\nDuration: 10s\n\nMaximum Charges: 3\n\nEffect ends when time expires or upon execution of three weaponskills.","DescriptionJSON":null,"EffectRange":0,"ID":7394,"IconHD":"/i/002000/002537_hr1.png","Name":"Riddle of Earth","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":17,"Description":"Increases damage dealt by 25%.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":7395,"IconHD":"/i/002000/002541_hr1.png","Name":"Riddle of Fire","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":70,"CooldownGroup":18,"Description":"Grants Brotherhood and Meditative Brotherhood to all nearby party members.\n\nBrotherhood Effect: Increases damage dealt by 5%\n\nMeditative Brotherhood Effect: 20% chance you open a chakra when party members under this effect execute a weaponskill or cast a spell\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":15,"ID":7396,"IconHD":"/i/002000/002542_hr1.png","Name":"Brotherhood","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 140 to all nearby enemies.\n\nCan only be executed when in raptor form.\n\nAdditional Effect: Extends Twin Snakes duration by 10s to a maximum of 15s\n\nAdditional Effect: Changes form to coeurl\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":5,"ID":16473,"IconHD":"/i/002000/002544_hr1.png","Name":"Four-point Fury","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":108,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":74,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 220 to all enemies in a straight line before you.\n\nCan only be executed while in combat and under the effect of the Fifth Chakra. The five chakra close upon execution.\n\nShares a recast timer with the Forbidden Chakra.","DescriptionJSON":null,"EffectRange":10,"ID":16474,"IconHD":"/i/002000/002545_hr1.png","Name":"Enlightenment","PreservesCombo":1,"PrimaryCostType":28,"PrimaryCostValue":5,"Range":10,"Recast100ms":10,"SecondaryCostType":42,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":78,"CooldownGroup":15,"Description":"Extends the duration of Twin Snakes and your present form to maximum and halts their expiration.\n\nDuration: 30s\n\nCancels auto-attack upon execution. Effect ends upon using another action or moving (including facing a different direction).\n\nTriggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.","DescriptionJSON":null,"EffectRange":0,"ID":16475,"IconHD":"/i/002000/002546_hr1.png","Name":"Anatman","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 540.\n\nAdditional Effect: Increases movement speed\n\nDuration: 5s\n\nThis weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.","DescriptionJSON":null,"EffectRange":0,"ID":16476,"IconHD":"/i/002000/002547_hr1.png","Name":"Six-sided Star","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":50,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"21":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 350.\n\nBeast Gauge Cost: 50","DescriptionJSON":null,"EffectRange":0,"ID":49,"IconHD":"/i/002000/002553_hr1.png","Name":"Inner Beast","PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":50,"Range":"-1","Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":265,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 220 to all nearby enemies.\n\nBeast Gauge Cost: 50","DescriptionJSON":null,"EffectRange":5,"ID":51,"IconHD":"/i/002000/002552_hr1.png","Name":"Steel Cyclone","PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":50,"Range":0,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":266,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":14,"Description":"Increases Beast Gauge by 50. Additional Effect: Grants Nascent Chaos
\n
\nDuration: 30s
\n
\n Maximum Charges: 2\n\nCan only be executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":52,"IconHD":"/i/002000/002555_hr1.png","Name":"Infuriate","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":42,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 590.\n\nBeast Gauge Cost: 50
\n
\n
\n※Action changes to Inner Chaos while under the effect of Nascent Chaos.","DescriptionJSON":null,"EffectRange":0,"ID":3549,"IconHD":"/i/002000/002557_hr1.png","Name":"Fell Cleave","PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":50,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies with a potency of 250.\n\nBeast Gauge Cost: 50
\n
\n
\n※Action changes to Chaotic Cyclone while under the effect of Nascent Chaos.","DescriptionJSON":null,"EffectRange":5,"ID":3550,"IconHD":"/i/002000/002558_hr1.png","Name":"Decimate","PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":50,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":56,"CooldownGroup":9,"Description":"Reduces damage taken by 20%.\n\nDuration: 6s
\nShares a recast timer with Nascent Flash.","DescriptionJSON":null,"EffectRange":0,"ID":3551,"IconHD":"/i/002000/002559_hr1.png","Name":"Raw Intuition","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":250,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":58,"CooldownGroup":15,"Description":"Restores own HP.\n\nCure Potency: 1,200","DescriptionJSON":null,"EffectRange":0,"ID":3552,"IconHD":"/i/002000/002560_hr1.png","Name":"Equilibrium","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":62,"CooldownGroup":5,"Description":"Rushes target and delivers an attack with a potency of 100.\n\nBeast Gauge Cost: 20\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":7386,"IconHD":"/i/002000/002561_hr1.png","Name":"Onslaught","PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":20,"Range":20,"Recast100ms":100,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":64,"CooldownGroup":10,"Description":"Delivers an attack with a potency of 450.\n\nBeast Gauge Cost: 20","DescriptionJSON":null,"EffectRange":0,"ID":7387,"IconHD":"/i/002000/002562_hr1.png","Name":"Upheaval","PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":20,"Range":"-1","Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":68,"CooldownGroup":18,"Description":"Creates a barrier around self and all nearby party members that absorbs damage totaling 15% of maximum HP.\n\nDispels Thrill of Battle, Vengeance, and Raw Intuition, increasing damage absorbed by 2% for each effect removed. \n\nDuration: 15s","DescriptionJSON":null,"EffectRange":15,"ID":7388,"IconHD":"/i/002000/002563_hr1.png","Name":"Shake It Off","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":19,"Description":"Allows the use of Beast Gauge actions without cost and nullifies Stun, Sleep, Bind, Heavy, and most knockback and draw-in effects.\n\nAdditional Effect: Guarantees that all attacks are critical and direct hits\n\nDuration: 10s\n\nAdditional Effect: Extends Storm's Eye duration by 15s to a maximum of 60s","DescriptionJSON":null,"EffectRange":0,"ID":7389,"IconHD":"/i/002000/002564_hr1.png","Name":"Inner Release","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":41,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby enemies.\n\nCombo Action: Overpower\n\nCombo Potency: 200
\nCombo Bonus: Extends Storm's Eye duration by 30s to a maximum of 60s
\nCombo Bonus: Increases Beast Gauge by 20","DescriptionJSON":null,"EffectRange":5,"ID":16462,"IconHD":"/i/002000/002565_hr1.png","Name":"Mythril Tempest","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Delivers a critical direct hit with a potency of 400 to all nearby enemies.\n\nAdditional Effect: Reduces the recast time of Infuriate by 5 seconds\n\nBeast Gauge Cost: 50\n\nCan only be executed while under the effect of Nascent Chaos. Effect fades upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":16463,"IconHD":"/i/002000/002566_hr1.png","Name":"Chaotic Cyclone","PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":50,"Range":0,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1897,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":9,"Description":"Grants the effect of Nascent Flash. Also grants target party member Nascent Glint.\n\nNascent Flash Effect: Absorbs damage dealt as HP\n\nNascent Glint Effect: Restores HP equaling 50% of that recovered by Nascent Flash while also reducing damage taken by 10%\n\nDuration: 6s\n\nShares a recast timer with Raw Intuition.","DescriptionJSON":null,"EffectRange":0,"ID":16464,"IconHD":"/i/002000/002567_hr1.png","Name":"Nascent Flash","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":250,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Delivers a critical direct hit with a potency of 920.\n\nAdditional Effect: Reduces the recast time of Infuriate by 5 seconds\n\nBeast Gauge Cost: 50\n\nCan only be executed while under the effect of Nascent Chaos. Effect fades upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16465,"IconHD":"/i/002000/002568_hr1.png","Name":"Inner Chaos","PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":50,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1897,"TargetArea":0}],"22":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 170 to all enemies in a straight line before you.","DescriptionJSON":null,"EffectRange":10,"ID":86,"IconHD":"/i/000000/000306_hr1.png","Name":"Doom Spike","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":10,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":9,"Description":"Delivers a jumping attack with a potency of 310. Returns you to your original position after the attack is made. Additional Effect: Grants Dive Ready
\n
\nDuration: 15s
\n
\n Cannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":92,"IconHD":"/i/002000/002576_hr1.png","Name":"Jump","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":4,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":6,"Description":"Executes a jump to a location 15 yalms behind you.\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":94,"IconHD":"/i/002000/002577_hr1.png","Name":"Elusive Jump","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":15,"Description":"Delivers a jumping attack with a potency of 240.\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":95,"IconHD":"/i/002000/002580_hr1.png","Name":"Spineshatter Dive","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":2,"ClassJobLevel":50,"CooldownGroup":21,"Description":"Delivers a jumping fire-based attack with a potency of 380 to target and all enemies nearby it.\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":5,"ID":96,"IconHD":"/i/002000/002578_hr1.png","Name":"Dragonfire Dive","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":7,"Description":"Increases potency of High Jump and Spineshatter Dive by 30%.
\n
\nDuration:
\nAdditional Effect: Grants Sharper Fang and Claw upon successfully executing Full Thrust, or Enhanced Wheeling Thrust upon successfully executing Chaos Thrust
\n
\nDuration: 10s
\n
\nEffects end upon use or upon using a weaponskill other than Fang and Claw or Wheeling Thrust.
\nCannot be executed while under the effect of Life of the Dragon.","DescriptionJSON":null,"EffectRange":0,"ID":3553,"IconHD":"/i/002000/002581_hr1.png","Name":"Blood of the Dragon","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":250,"SecondaryCostType":76,"SecondaryCostValue":4,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":56,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 340.\n\n380 when executed from a target's flank.\n\nCan only be executed while under the effects of Sharper Fang and Claw and either Blood of the Dragon or Life of the Dragon .\n\nAdditional Effect: Extends Blood of the Dragon duration by 10s to a maximum of 30s","DescriptionJSON":null,"EffectRange":0,"ID":3554,"IconHD":"/i/002000/002582_hr1.png","Name":"Fang and Claw","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":802,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":60,"CooldownGroup":8,"Description":"Delivers an attack with a potency of 300 to all enemies in a straight line before you.\n\nCan only be executed while under the effect of Blood of the Dragon.
\nAdditional Effect: Changes Blood of the Dragon to Life of the Dragon while under the full gaze of the first brood
\n
\n
\n
\n※Action changes to Nastrond while under the effect of Life of the Dragon.","DescriptionJSON":null,"EffectRange":15,"ID":3555,"IconHD":"/i/002000/002583_hr1.png","Name":"Geirskogul","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":300,"SecondaryCostType":76,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":58,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 340.\n\n380 when executed from a target's rear.\n\nCan only be executed while under the effects of Enhanced Wheeling Thrust and either Blood of the Dragon or Life of the Dragon .\n\nAdditional Effect: Extends Blood of the Dragon duration by 10s to a maximum of 30s","DescriptionJSON":null,"EffectRange":0,"ID":3556,"IconHD":"/i/002000/002584_hr1.png","Name":"Wheeling Thrust","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":803,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":52,"CooldownGroup":24,"Description":"Increases critical hit rate of self and nearby party members by 10%.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":15,"ID":3557,"IconHD":"/i/002000/002585_hr1.png","Name":"Battle Litany","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1800,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":86,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":62,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all enemies in a straight line before you.\n\nCombo Action: Doom Spike\n\nCombo Potency: 200\n\nCombo Bonus: Extends Blood of the Dragon duration by 10s to a maximum of 30s","DescriptionJSON":null,"EffectRange":10,"ID":7397,"IconHD":"/i/002000/002586_hr1.png","Name":"Sonic Thrust","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":10,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":66,"CooldownGroup":22,"Description":"Grants Right Eye to self, increasing damage dealt by 10%. Also grants target party member Left Eye, increasing damage dealt by 5% as long as target remains within 12 yalms.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":7398,"IconHD":"/i/002000/002587_hr1.png","Name":"Dragon Sight","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":12,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 300. Additional Effect: Strengthens the gaze of your Dragon Gauge by 1 if under the effect of Blood of the Dragon or Life of the Dragon
\n
\n Can only be executed when Dive Ready.","DescriptionJSON":null,"EffectRange":0,"ID":7399,"IconHD":"/i/002000/002588_hr1.png","Name":"Mirage Dive","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":10,"SecondaryCostType":32,"SecondaryCostValue":1243,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":70,"CooldownGroup":3,"Description":"Delivers an attack with a potency of 400 to all enemies in a straight line before you.\n\nCan only be executed while under the effect of Life of the Dragon.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":7400,"IconHD":"/i/002000/002589_hr1.png","Name":"Nastrond","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":100,"SecondaryCostType":76,"SecondaryCostValue":2,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7397,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all enemies in a straight line before you.\n\nCombo Action: Sonic Thrust\n\nCombo Potency: 230\n\nCombo Bonus: Extends Blood of the Dragon duration by 10s to a maximum of 30s","DescriptionJSON":null,"EffectRange":10,"ID":16477,"IconHD":"/i/002000/002590_hr1.png","Name":"Coerthan Torment","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":10,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":74,"CooldownGroup":9,"Description":"Delivers a jumping attack with a potency of 400. Returns you to your original position after the attack is made.\n\nAdditional Effect: Grants Dive Ready\n\nDuration: 15s\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":16478,"IconHD":"/i/002000/002591_hr1.png","Name":"High Jump","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 330.\n\nCan only be executed when Raiden Thrust Ready.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16479,"IconHD":"/i/002000/002592_hr1.png","Name":"Raiden Thrust","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1863,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":2,"ClassJobLevel":80,"CooldownGroup":10,"Description":"Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 600 for the first enemy, and 30% less for all remaining enemies.\n\nCan only be executed while under the effect of Life of the Dragon.\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":5,"ID":16480,"IconHD":"/i/002000/002593_hr1.png","Name":"Stardiver","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":300,"SecondaryCostType":76,"SecondaryCostValue":2,"TargetArea":0}],"23":[{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":16,"Description":"Deals unaspected damage with a potency of 100.\n\nAdditional Effect: Grants Mage's Ballad to all party members within 30 yalms, increasing their damage dealt by 1%\n\nDuration: 30s\n\nAdditional Effect: 40% chance to grant Repertoire when damage over time is dealt by Caustic Bite or Stormbite Repertoire Effect: Resets the recast timer of Bloodletter and Rain of Death\n\nThis action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.","DescriptionJSON":null,"EffectRange":0,"ID":114,"IconHD":"/i/002000/002602_hr1.png","Name":"Mage's Ballad","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":800,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":17,"Description":"Deals unaspected damage with a potency of 100.\n\nAdditional Effect: Grants Army's Paeon to all party members within 30 yalms, increasing their direct hit rate by 3%\n\nDuration: 30s\n\nAdditional Effect: 40% chance to grant Repertoire when damage over time is dealt by Caustic Bite or Stormbite Repertoire Effect: Reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 4%\n\nCan be stacked up to 4 times.\n\nThis action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.","DescriptionJSON":null,"EffectRange":0,"ID":116,"IconHD":"/i/002000/002603_hr1.png","Name":"Army's Paeon","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":800,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":45,"CooldownGroup":5,"Description":"Delivers an attack with a potency of 130 to target and all enemies nearby it.\n\nShares a recast timer with Bloodletter.","DescriptionJSON":null,"EffectRange":8,"ID":117,"IconHD":"/i/002000/002605_hr1.png","Name":"Rain of Death","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":150,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":50,"CooldownGroup":23,"Description":"Increases direct hit rate of all nearby party members by 20%.\n\nDuration: 20s\n\nCan only be executed while singing Mage's Ballad, Army's Paeon, or the Wanderer's Minuet.","DescriptionJSON":null,"EffectRange":20,"ID":118,"IconHD":"/i/002000/002601_hr1.png","Name":"Battle Voice","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1800,"SecondaryCostType":67,"SecondaryCostValue":4,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":8,"Description":"Delivers an attack with a potency of 230.","DescriptionJSON":null,"EffectRange":0,"ID":3558,"IconHD":"/i/002000/002606_hr1.png","Name":"Empyreal Arrow","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":150,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":52,"CooldownGroup":18,"Description":"Deals unaspected damage with a potency of 100.\n\nAdditional Effect: Grants the Wanderer's Minuet to all party members within 30 yalms, increasing their critical hit rate by 2%\n\nDuration: 30s\n\nAdditional Effect: 40% chance to grant Repertoire when damage over time is dealt by Caustic Bite or Stormbite Repertoire Effect: Allows execution of Pitch Perfect\n\nCan be stacked up to 3 times.\n\nThis action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.","DescriptionJSON":null,"EffectRange":0,"ID":3559,"IconHD":"/i/002000/002607_hr1.png","Name":"the Wanderer's Minuet","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":800,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":56,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nAdditional Effect: If the target is suffering from a Caustic Bite or Stormbite effect inflicted by you, the effect timer is reset
\nAdditional Effect: 35% chance of becoming Straight Shot Ready
\n
\nDuration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":3560,"IconHD":"/i/002000/002608_hr1.png","Name":"Iron Jaws","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":12,"Description":"Removes one select detrimental effect from self or target party member. If the target is not enfeebled, a barrier is created nullifying the target's next detrimental effect suffered.\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":3561,"IconHD":"/i/002000/002609_hr1.png","Name":"the Warden's Paean","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":450,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":13,"Description":"Delivers an attack with a potency of 100.\n\nAdditional Effect: If the target is suffering from a Caustic Bite or Stormbite effect inflicted by you, Sidewinder potency is increased to 200 for one effect, or 350 for both
\nShares a recast timer with Shadowbite.","DescriptionJSON":null,"EffectRange":0,"ID":3562,"IconHD":"/i/002000/002610_hr1.png","Name":"Sidewinder","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":52,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 100 when Repertoire stack is 1, 250 when Repertoire stack is 2, and 450 when Repertoire stack is 3.\n\nCan only be executed when the Wanderer's Minuet is active.","DescriptionJSON":null,"EffectRange":0,"ID":7404,"IconHD":"/i/002000/002611_hr1.png","Name":"Pitch Perfect","PreservesCombo":1,"PrimaryCostType":32,"PrimaryCostValue":1,"Range":"-1","Recast100ms":30,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":62,"CooldownGroup":24,"Description":"Reduces damage taken by self and nearby party members by 10%.\n\nDuration: 15s\n\nEffect cannot be stacked with machinist's Tactician or dancer's Shield Samba.","DescriptionJSON":null,"EffectRange":20,"ID":7405,"IconHD":"/i/002000/002612_hr1.png","Name":"Troubadour","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 150.\n\nAdditional Effect: Poison\n\nPotency: 40\n\nDuration: 30s
\nAdditional Effect: 35% chance of becoming Straight Shot Ready
\n
\nDuration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":7406,"IconHD":"/i/002000/002613_hr1.png","Name":"Caustic Bite","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":168,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Deals wind damage with a potency of 100.\n\nAdditional Effect: Wind damage over time\n\nPotency: 50\n\nDuration: 30s
\nAdditional Effect: 35% chance of becoming Straight Shot Ready
\n
\nDuration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":7407,"IconHD":"/i/002000/002614_hr1.png","Name":"Stormbite","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":168,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":66,"CooldownGroup":20,"Description":"Increases HP recovery via healing actions for a party member or self by 20%.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":7408,"IconHD":"/i/002000/002615_hr1.png","Name":"Nature's Minne","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 340.\n\nCan only be executed when Straight Shot Ready.","DescriptionJSON":null,"EffectRange":0,"ID":7409,"IconHD":"/i/002000/002616_hr1.png","Name":"Refulgent Arrow","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":122,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":122,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":72,"CooldownGroup":13,"Description":"Delivers an attack with a potency of 100 to target and all enemies nearby it.\n\nAdditional Effect: If the target is suffering from a Caustic Bite or Stormbite effect inflicted by you, Shadowbite potency is increased to 160 for one effect, or 220 for both\n\nShares a recast timer with Sidewinder.","DescriptionJSON":null,"EffectRange":5,"ID":16494,"IconHD":"/i/002000/002617_hr1.png","Name":"Shadowbite","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 250.\n\nAdditional Effect: 35% chance of becoming Straight Shot Ready\n\nDuration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":16495,"IconHD":"/i/002000/002618_hr1.png","Name":"Burst Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 120 to all enemies in a straight line before you.\n\nSoul Voice Gauge Cost: 20 \n\nPotency increases up to 600 as Soul Voice Gauge exceeds minimum cost.\n\nConsumes Soul Voice Gauge upon execution.","DescriptionJSON":null,"EffectRange":25,"ID":16496,"IconHD":"/i/002000/002619_hr1.png","Name":"Apex Arrow","PreservesCombo":0,"PrimaryCostType":59,"PrimaryCostValue":20,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"24":[{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Restores HP of target and all party members nearby target.\n\nCure Potency: 550","DescriptionJSON":null,"EffectRange":6,"ID":131,"IconHD":"/i/000000/000407_hr1.png","Name":"Cure III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":15,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":23,"Description":"Reduces spell cast time and recast time, and auto-attack delay by 20%.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":136,"IconHD":"/i/002000/002626_hr1.png","Name":"Presence of Mind","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1500,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Grants healing over time effect to target.\n\nCure Potency: 200\n\nDuration: 18s","DescriptionJSON":null,"EffectRange":0,"ID":137,"IconHD":"/i/002000/002628_hr1.png","Name":"Regen","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":2,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 140 to all nearby enemies.\n\nAdditional Effect: Stun\n\nDuration: 4s","DescriptionJSON":null,"EffectRange":8,"ID":139,"IconHD":"/i/002000/002629_hr1.png","Name":"Holy","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":6,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":24,"Description":"Restores all of a target's HP.","DescriptionJSON":null,"EffectRange":0,"ID":140,"IconHD":"/i/002000/002627_hr1.png","Name":"Benediction","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":1800,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":54,"CooldownGroup":58,"Description":"Deals earth damage with a potency of 240.","DescriptionJSON":null,"EffectRange":0,"ID":3568,"IconHD":"/i/002000/002631_hr1.png","Name":"Stone III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":182,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":7,"ClassJobLevel":52,"CooldownGroup":18,"Description":"Envelops a designated area in a veil of succor, granting healing over time to self and any party members who enter.\n\nCure Potency: 100\n\nDuration: 24s
\nAdditional Effect: Increases HP recovery via healing actions on party members in the designated area by 10%","DescriptionJSON":null,"EffectRange":8,"ID":3569,"IconHD":"/i/002000/002632_hr1.png","Name":"Asylum","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":14,"Description":"Restores target's HP.\n\nCure Potency: 700","DescriptionJSON":null,"EffectRange":0,"ID":3570,"IconHD":"/i/002000/002633_hr1.png","Name":"Tetragrammaton","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":56,"CooldownGroup":12,"Description":"Deals unaspected damage with a potency of 400 to all nearby enemies.\n\nAdditional Effect: Restores own HP and the HP of nearby party members\n\nCure Potency: 400\n\nAdditional Effect: Restores 5% of maximum MP","DescriptionJSON":null,"EffectRange":15,"ID":3571,"IconHD":"/i/002000/002634_hr1.png","Name":"Assize","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":450,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":58,"CooldownGroup":21,"Description":"Reduces MP cost of all actions by 100%.\n\nDuration: 12s","DescriptionJSON":null,"EffectRange":0,"ID":7430,"IconHD":"/i/002000/002636_hr1.png","Name":"Thin Air","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Deals earth damage with a potency of 280.","DescriptionJSON":null,"EffectRange":0,"ID":7431,"IconHD":"/i/002000/002637_hr1.png","Name":"Stone IV","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":308,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":66,"CooldownGroup":10,"Description":"Creates a barrier around self or target party member that absorbs damage equivalent to a heal of 500 potency.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":7432,"IconHD":"/i/002000/002638_hr1.png","Name":"Divine Benison","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":70,"CooldownGroup":15,"Description":"Grants Confession to self and nearby party members.\n\nUpon receiving HP recovery via Medica, Medica II, Cure III, or Afflatus Rapture cast by self, Confession triggers an additional healing effect.\n\nCure Potency: 200\n\nDuration: 10s","DescriptionJSON":null,"EffectRange":20,"ID":7433,"IconHD":"/i/002000/002639_hr1.png","Name":"Plenary Indulgence","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":52,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 700
\nAdditional Effect: Nourishes the Blood Lily Healing Gauge Cost: 1 Lily","DescriptionJSON":null,"EffectRange":0,"ID":16531,"IconHD":"/i/002000/002640_hr1.png","Name":"Afflatus Solace","PreservesCombo":0,"PrimaryCostType":57,"PrimaryCostValue":1,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 120.\n\nAdditional Effect: Unaspected damage over time\n\nPotency: 60\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":16532,"IconHD":"/i/002000/002641_hr1.png","Name":"Dia","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":307,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 300.","DescriptionJSON":null,"EffectRange":0,"ID":16533,"IconHD":"/i/002000/002642_hr1.png","Name":"Glare","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":308,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 300\n\nAdditional Effect: Nourishes the Blood Lily\n\nHealing Gauge Cost: 1 Lily","DescriptionJSON":null,"EffectRange":20,"ID":16534,"IconHD":"/i/002000/002643_hr1.png","Name":"Afflatus Rapture","PreservesCombo":0,"PrimaryCostType":57,"PrimaryCostValue":1,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":74,"CooldownGroup":58,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 900 for the first enemy, and 25% less for all remaining enemies.\n\nCan only be executed when the Blood Lily is in full bloom.","DescriptionJSON":null,"EffectRange":5,"ID":16535,"IconHD":"/i/002000/002644_hr1.png","Name":"Afflatus Misery","PreservesCombo":0,"PrimaryCostType":56,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":22,"Description":"Increases healing magic potency by 20%, while reducing damage taken by self and all party members within a radius of 30 yalms by 10%.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":16536,"IconHD":"/i/002000/002645_hr1.png","Name":"Temperance","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"25":[{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Deals lightning damage with a potency of 70.\n\nAdditional Effect: Lightning damage over time\n\nPotency: 40\n\nDuration: 24s
\nAdditional Effect: 10% chance after each tick that the next Thunder spell of any grade will add its full damage over time amount to its initial damage, have no cast time, and cost no MP
\n
\nDuration: 18s
\n
\n Only one Thunder spell-induced damage over time effect per caster can be inflicted upon a single target.","DescriptionJSON":null,"EffectRange":0,"ID":153,"IconHD":"/i/000000/000459_hr1.png","Name":"Thunder III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":171,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":35,"CastType":1,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Deals ice damage with a potency of 240.\n\nAdditional Effect: Grants Umbral Ice III and removes Astral Fire\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":154,"IconHD":"/i/000000/000456_hr1.png","Name":"Blizzard III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":8,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":24,"Description":"Restores 30% of maximum MP.","DescriptionJSON":null,"EffectRange":0,"ID":158,"IconHD":"/i/002000/002651_hr1.png","Name":"Manafont","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1800,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":2,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Deals ice damage with a potency of 100 to target and all enemies nearby it.\n\nAdditional Effect: Grants Umbral Ice III and removes Astral Fire\n\nDuration: 15s
\nAdditional Effect: Grants 1 Umbral Heart
\n
\nUmbral Heart Bonus: Nullifies Astral Fire's MP cost increase for Fire spells and reduces MP cost for Flare by one-third","DescriptionJSON":null,"EffectRange":5,"ID":159,"IconHD":"/i/002000/002653_hr1.png","Name":"Freeze","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":10,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":40,"CastType":2,"ClassJobLevel":50,"CooldownGroup":58,"Description":"Deals fire damage to target and all enemies nearby it with a potency of 260 for the first enemy, and 40% less for all remaining enemies.\n\nAdditional Effect: Grants Astral Fire III and removes Umbral Ice\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":5,"ID":162,"IconHD":"/i/002000/002652_hr1.png","Name":"Flare","PreservesCombo":0,"PrimaryCostType":4,"PrimaryCostValue":8,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":7,"ClassJobLevel":52,"CooldownGroup":18,"Description":"Connects naturally occurring ley lines to create a circle of power which, while standing within it, reduces spell cast time and recast time, and auto-attack delay by 15%.\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":3,"ID":3573,"IconHD":"/i/002000/002656_hr1.png","Name":"Ley Lines","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":14,"Description":"Ensures the next Scathe, Fire, or Thunder spell cast will, for the first hit, trigger Scathe's additional effect, Firestarter, or Thundercloud respectively.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":3574,"IconHD":"/i/002000/002657_hr1.png","Name":"Sharpcast","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":56,"CooldownGroup":10,"Description":"Increases magic damage dealt by 15 %. Also allows the casting of Blizzard IV, Fire IV, Despair, and Umbral Soul. Additional Effect: Grants Polyglot if Enochian is maintained for 30s
\n
\n Can only be executed while under the effect of Astral Fire or Umbral Ice. Effect is canceled if Astral Fire or Umbral Ice ends.","DescriptionJSON":null,"EffectRange":0,"ID":3575,"IconHD":"/i/002000/002658_hr1.png","Name":"Enochian","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":59,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":28,"CastType":1,"ClassJobLevel":58,"CooldownGroup":58,"Description":"Deals ice damage with a potency of 300.\n\nAdditional Effect: Grants 3 Umbral Hearts\n\nUmbral Heart Bonus: Nullifies Astral Fire's MP cost increase for Fire spells and reduces MP cost for Flare by one-third
\n
\n Can only be executed while under the effects of both Enochian and Umbral Ice.","DescriptionJSON":null,"EffectRange":0,"ID":3576,"IconHD":"/i/002000/002659_hr1.png","Name":"Blizzard IV","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":8,"Range":25,"Recast100ms":25,"SecondaryCostType":86,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":28,"CastType":1,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 300.\n\nCan only be executed while under the effects of both Enochian and Astral Fire.","DescriptionJSON":null,"EffectRange":0,"ID":3577,"IconHD":"/i/002000/002660_hr1.png","Name":"Fire IV","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":8,"Range":25,"Recast100ms":25,"SecondaryCostType":87,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":7,"ClassJobLevel":62,"CooldownGroup":2,"Description":"Move instantly to Ley Lines drawn by you.\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":7419,"IconHD":"/i/002000/002661_hr1.png","Name":"Between the Lines","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":30,"SecondaryCostType":60,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":30,"CastType":2,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Deals lightning damage with a potency of 50 to target and all enemies nearby it.\n\nAdditional Effect: Lightning damage over time\n\nPotency: 30\n\nDuration: 18s\n\nAdditional Effect: 3% chance after each tick that the next Thunder spell of any grade will add its full damage over time amount to its initial damage, have no cast time, and cost no MP\n\nDuration: 18s\n\nOnly one Thunder spell-induced damage over time effect per caster can be inflicted upon a single target.","DescriptionJSON":null,"EffectRange":5,"ID":7420,"IconHD":"/i/002000/002662_hr1.png","Name":"Thunder IV","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":8,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":172,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":66,"CooldownGroup":15,"Description":"The next three spells will require no cast time.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":7421,"IconHD":"/i/002000/002663_hr1.png","Name":"Triplecast","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":2,"ClassJobLevel":70,"CooldownGroup":58,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 650 for the first enemy, and 25% less for all remaining enemies.\n\nPolyglot Cost: 1","DescriptionJSON":null,"EffectRange":5,"ID":7422,"IconHD":"/i/002000/002664_hr1.png","Name":"Foul","PreservesCombo":0,"PrimaryCostType":23,"PrimaryCostValue":1,"Range":25,"Recast100ms":25,"SecondaryCostType":11,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":30,"CastType":1,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 380.\n\nAdditional Effect: Grants Astral Fire III\n\nDuration: 15s\n\nCan only be executed while under the effects of both Enochian and Astral Fire.","DescriptionJSON":null,"EffectRange":0,"ID":16505,"IconHD":"/i/002000/002665_hr1.png","Name":"Despair","PreservesCombo":0,"PrimaryCostType":4,"PrimaryCostValue":8,"Range":25,"Recast100ms":25,"SecondaryCostType":87,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Grants Umbral Ice and 1 Umbral Heart.\n\nUmbral Heart Bonus: Nullifies Astral Fire's MP cost increase for Fire spells and reduces MP cost for Flare by one-third\n\nCan only be executed while under the effects of both Enochian and Umbral Ice.","DescriptionJSON":null,"EffectRange":0,"ID":16506,"IconHD":"/i/002000/002666_hr1.png","Name":"Umbral Soul","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":86,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 750.\n\nPolyglot Cost: 1","DescriptionJSON":null,"EffectRange":0,"ID":16507,"IconHD":"/i/002000/002667_hr1.png","Name":"Xenoglossy","PreservesCombo":0,"PrimaryCostType":23,"PrimaryCostValue":1,"Range":25,"Recast100ms":25,"SecondaryCostType":11,"SecondaryCostValue":1,"TargetArea":0}],"26":[{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 180.","DescriptionJSON":null,"EffectRange":0,"ID":163,"IconHD":"/i/000000/000501_hr1.png","Name":"Ruin","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":217,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Deals unaspected damage over time.\n\nPotency: 20\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":164,"IconHD":"/i/000000/000503_hr1.png","Name":"Bio","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":175,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":4,"Description":"Summons a caster-type pet to fight at your side.\n\nShares a recast timer with Summon II and Summon III .","DescriptionJSON":null,"EffectRange":0,"ID":165,"IconHD":"/i/000000/000516_hr1.png","Name":"Summon","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":30,"SecondaryCostType":100,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":6,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 20.\n\nAdditional Effect: Unaspected damage over time\n\nPotency: 20\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":168,"IconHD":"/i/000000/000505_hr1.png","Name":"Miasma","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":177,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":4,"Description":"Summons a support-type pet to fight at your side.\n\nShares a recast timer with Summon and Summon III .","DescriptionJSON":null,"EffectRange":0,"ID":170,"IconHD":"/i/000000/000517_hr1.png","Name":"Summon II","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":30,"SecondaryCostType":100,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":38,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 160.","DescriptionJSON":null,"EffectRange":0,"ID":172,"IconHD":"/i/000000/000502_hr1.png","Name":"Ruin II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":80,"CastType":1,"ClassJobLevel":12,"CooldownGroup":58,"Description":"Resurrects target to a weakened state.","DescriptionJSON":null,"EffectRange":0,"ID":173,"IconHD":"/i/000000/000511_hr1.png","Name":"Resurrection","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":24,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":30,"CooldownGroup":3,"Description":"Spreads a target's Bio and Miasma effects to nearby enemies.\n\nPotency is reduced by 60% for all remaining enemies. Duration: Full duration of original effects No effect if target is not suffering from Bio or Miasma effects inflicted by you.","DescriptionJSON":null,"EffectRange":8,"ID":174,"IconHD":"/i/000000/000507_hr1.png","Name":"Bane","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":100,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Deals unaspected damage over time.\n\nPotency: 30\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":178,"IconHD":"/i/000000/000504_hr1.png","Name":"Bio II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":6,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":177,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":18,"CooldownGroup":1,"Description":"Deals unaspected damage with a potency of 100.\n\nAdditional Effect: If target is suffering from a Bio or Miasma effect inflicted by you, Fester potency is increased to 200 for one effect, or 300 for both\n\nEffect only applies when the original spells were cast by you.\n\nAetherflow Gauge Cost: 1","DescriptionJSON":null,"EffectRange":0,"ID":181,"IconHD":"/i/002000/002676_hr1.png","Name":"Fester","PreservesCombo":1,"PrimaryCostType":30,"PrimaryCostValue":1,"Range":25,"Recast100ms":50,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 400","DescriptionJSON":null,"EffectRange":0,"ID":16230,"IconHD":"/i/000000/000518_hr1.png","Name":"Physick","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":18,"CooldownGroup":8,"Description":"Deals unaspected damage with a potency of 100.\n\nAdditional Effect: Aetherflow II
\nShares a recast timer with Energy Siphon.","DescriptionJSON":null,"EffectRange":0,"ID":16508,"IconHD":"/i/000000/000514_hr1.png","Name":"Energy Drain","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":10,"CooldownGroup":9,"Description":"Orders your Egi to use Aerial Slash if Garuda-Egi is summoned, Crimson Cyclone if Ifrit-Egi is summoned, or Earthen Armor if Titan-Egi is summoned. Maximum Charges: 2\n\nCan only be executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":16509,"IconHD":"/i/002000/002695_hr1.png","Name":"Egi Assault","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":73,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":10,"Description":"Orders your Egi to use Slipstream if Garuda-Egi is summoned, Flaming Crush if Ifrit-Egi is summoned, or Mountain Buster if Titan-Egi is summoned. Maximum Charges: 2\n\nCan only be executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":16512,"IconHD":"/i/002000/002696_hr1.png","Name":"Egi Assault II","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":73,"SecondaryCostValue":0,"TargetArea":0}],"27":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":4,"Description":"Summons an attacker-type pet to fight at your side.\n\nShares a recast timer with Summon and Summon II.","DescriptionJSON":null,"EffectRange":0,"ID":180,"IconHD":"/i/002000/002680_hr1.png","Name":"Summon III","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":30,"SecondaryCostType":100,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":24,"Description":"Commands pet to use its signature attack.\n\nCan only be executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":184,"IconHD":"/i/002000/002677_hr1.png","Name":"Enkindle","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":1800,"SecondaryCostType":73,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":52,"CooldownGroup":2,"Description":"Deals unaspected damage with a potency of 130 to target and all enemies nearby it.\n\nAetherflow Gauge Cost: 1","DescriptionJSON":null,"EffectRange":5,"ID":3578,"IconHD":"/i/002000/002681_hr1.png","Name":"Painflare","PreservesCombo":1,"PrimaryCostType":30,"PrimaryCostValue":1,"Range":25,"Recast100ms":50,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":54,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 200.","DescriptionJSON":null,"EffectRange":0,"ID":3579,"IconHD":"/i/002000/002682_hr1.png","Name":"Ruin III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":56,"CooldownGroup":14,"Description":"Deals unaspected damage with a potency of 150.\n\nAdditional Effect: Afflicts target with Bio III and Miasma III Duration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":3580,"IconHD":"/i/002000/002683_hr1.png","Name":"Tri-disaster","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":500,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":58,"CooldownGroup":15,"Description":"Reduces spell casting time by 2.5 seconds.\n\nDuration: 15s\n\nAdditional Effect: Resets Tri-disaster recast timer
\nAdditional Effect:
\nShares a recast timer with Firebird Trance.","DescriptionJSON":null,"EffectRange":0,"ID":3581,"IconHD":"/i/002000/002684_hr1.png","Name":"Dreadwyrm Trance","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":550,"SecondaryCostType":99,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":60,"CooldownGroup":6,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 400 for the first enemy, and 50% less for all remaining enemies.\n\nCan only be executed while in Dreadwyrm Trance. Dreadwyrm Trance fades upon execution.","DescriptionJSON":null,"EffectRange":5,"ID":3582,"IconHD":"/i/002000/002685_hr1.png","Name":"Deathflare","PreservesCombo":0,"PrimaryCostType":47,"PrimaryCostValue":0,"Range":25,"Recast100ms":150,"SecondaryCostType":79,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":64,"CooldownGroup":23,"Description":"Orders pet to execute Devotion.\n\nDevotion Effect: Increases damage dealt by all party members within a 15-yalm radius by 5%\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":7423,"IconHD":"/i/002000/002687_hr1.png","Name":"Aetherpact","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1800,"SecondaryCostType":40,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":66,"CooldownGroup":58,"Description":"Deals unaspected damage over time.\n\nPotency: 45\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":7424,"IconHD":"/i/002000/002689_hr1.png","Name":"Bio III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":6,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":177,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":66,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 45.\n\nAdditional Effect: Unaspected damage over time\n\nPotency: 45\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":7425,"IconHD":"/i/002000/002690_hr1.png","Name":"Miasma III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":177,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":62,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 300.\n\nCan only be executed while under the effect of Further Ruin.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7426,"IconHD":"/i/002000/002686_hr1.png","Name":"Ruin IV","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1212,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":7,"Description":"Summons Demi-Bahamut to fight by your side. Each time you cast a spell on an enemy, Demi-Bahamut will execute Wyrmwave on the same target.\n\nDuration: 20s\n\nDreadwyrm Aether Cost: 2\n\nCannot summon Demi-Bahamut unless a pet is already summoned. Current pet will leave the battlefield while Demi-Bahamut is present, and return once gone. Cannot use while under the effect of Dreadwyrm Trance.","DescriptionJSON":null,"EffectRange":0,"ID":7427,"IconHD":"/i/002000/002691_hr1.png","Name":"Summon Bahamut","PreservesCombo":1,"PrimaryCostType":24,"PrimaryCostValue":2,"Range":0,"Recast100ms":300,"SecondaryCostType":66,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":0,"Description":"Deals unaspected damage with a potency of 150.\n\nWill only execute while Demi-Bahamut is summoned.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7428,"IconHD":"/i/002000/002692_hr1.png","Name":"Wyrmwave","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":100,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":5,"Description":"Orders Demi-Bahamut to execute Akh Morn.\n\nAkh Morn Effect: Deals unaspected damage to target and all enemies nearby it with a potency of 650 for the first enemy, and 50% less for all remaining enemies
\nShares a recast timer with Enkindle Phoenix.","DescriptionJSON":null,"EffectRange":0,"ID":7429,"IconHD":"/i/002000/002693_hr1.png","Name":"Enkindle Bahamut","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":100,"SecondaryCostType":65,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":70,"CooldownGroup":0,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 650 for the first enemy, and 50% less for all remaining enemies.\n\nCan only be executed while Demi-Bahamut is summoned.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":7449,"IconHD":"/i/002000/002694_hr1.png","Name":"Akh Morn","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":100,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":35,"CooldownGroup":8,"Description":"Deals unaspected damage with a potency of 40 to target and all enemies nearby it.\n\nAdditional Effect: Aetherflow II\n\nShares a recast timer with Energy Drain.","DescriptionJSON":null,"EffectRange":5,"ID":16510,"IconHD":"/i/002000/002697_hr1.png","Name":"Energy Siphon","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":2,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 90 to target and all enemies nearby it.","DescriptionJSON":null,"EffectRange":5,"ID":16511,"IconHD":"/i/002000/002698_hr1.png","Name":"Outburst","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":72,"CooldownGroup":15,"Description":"Reduces spell casting time by 2.5 seconds.\n\nDuration: 20s\n\nAdditional Effect: Resets Tri-disaster recast timer\n\nAdditional Effect: Changes Ruin III to Fountain of Fire and Outburst to Brand of Purgatory\n\nCan only be executed after summoning Demi-Bahamut.\n\nDreadwyrm Trance is changed to Firebird Trance upon Demi-Bahamut leaving the battlefield.\n\nShares a recast timer with Dreadwyrm Trance.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16513,"IconHD":"/i/002000/002734_hr1.png","Name":"Firebird Trance","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":550,"SecondaryCostType":92,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 250.\n\nAdditional Effect: Grants Hellish Conduit\n\nDuration: 10s\n\nCan only be executed while under the effect of Firebird Trance.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16514,"IconHD":"/i/002000/002735_hr1.png","Name":"Fountain of Fire","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":93,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals fire damage to target and all enemies nearby it with a potency of 350 for the first enemy, and 50% less for all remaining enemies.\n\nCan only be executed while under the effects of both Firebird Trance and Hellish Conduit.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":8,"ID":16515,"IconHD":"/i/002000/002736_hr1.png","Name":"Brand of Purgatory","PreservesCombo":0,"PrimaryCostType":10,"PrimaryCostValue":1867,"Range":25,"Recast100ms":25,"SecondaryCostType":93,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":5,"Description":"Orders Demi-Phoenix to execute Revelation.\n\nRevelation Effect: Deals fire damage to target and all enemies nearby it with a potency of 650 for the first enemy, and 50% less for all remaining enemies\n\nAction replaces Enkindle Bahamut while Demi-Phoenix is summoned.\n\nShares a recast timer with Enkindle Bahamut.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16516,"IconHD":"/i/002000/002737_hr1.png","Name":"Enkindle Phoenix","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":100,"SecondaryCostType":103,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":80,"CooldownGroup":0,"Description":"Gradually restores own HP and the HP of all nearby party members.\n\nCure Potency: 100\n\nDuration: 21s\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":16517,"IconHD":"/i/002000/002731_hr1.png","Name":"Everlasting Flight","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":80,"CooldownGroup":0,"Description":"Deals fire damage to target and all enemies nearby it with a potency of 650 for the first enemy, and 50% less for all remaining enemies.\n\nCan only be executed while Demi-Phoenix is summoned.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":16518,"IconHD":"/i/002000/002732_hr1.png","Name":"Revelation","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":100,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":0,"Description":"Deals fire damage with a potency of 150.\n\nWill only execute while Demi-Phoenix is summoned.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16519,"IconHD":"/i/002000/002733_hr1.png","Name":"Scarlet Flame","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":100,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"28":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":13,"Description":"Restores 10% of maximum MP.\n\nAdditional Effect: Aetherflow III\n\nCan only be executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":166,"IconHD":"/i/000000/000510_hr1.png","Name":"Aetherflow","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":42,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":4,"Description":"Deals unaspected damage with a potency of 100.\n\nAdditional Effect: Absorbs a portion of damage dealt as HP and restores MP Additional Effect: Increases Faerie Gauge by 10
\n
\n Aetherflow Gauge Cost: 1","DescriptionJSON":null,"EffectRange":0,"ID":167,"IconHD":"/i/000000/000514_hr1.png","Name":"Energy Drain","PreservesCombo":1,"PrimaryCostType":30,"PrimaryCostValue":1,"Range":25,"Recast100ms":30,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 300\n\nAdditional Effect: Grants Galvanize to target, nullifying damage equaling 125% of the amount of HP restored. When critical HP is restored, also grants Catalyze, nullifying damage equaling 125% the amount of HP restored.\n\nDuration: 30s\n\nEffect cannot be stacked with astrologian's Nocturnal Field.","DescriptionJSON":null,"EffectRange":0,"ID":185,"IconHD":"/i/002000/002801_hr1.png","Name":"Adloquium","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":10,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 180\n\nAdditional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored\n\nDuration: 30s\n\nEffect cannot be stacked with astrologian's Nocturnal Field.","DescriptionJSON":null,"EffectRange":15,"ID":186,"IconHD":"/i/002000/002802_hr1.png","Name":"Succor","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":10,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":7,"ClassJobLevel":50,"CooldownGroup":9,"Description":"Creates a designated area in which party members will only suffer 90% of all damage inflicted.\n\nDuration: 15s Additional Effect: Regen
\n
\nCure Potency: 100
\n
\n Additional Effect: Increases Faerie Gauge by 10
\n
\n Aetherflow Gauge Cost: 1","DescriptionJSON":null,"EffectRange":8,"ID":188,"IconHD":"/i/002000/002804_hr1.png","Name":"Sacred Soil","PreservesCombo":1,"PrimaryCostType":30,"PrimaryCostValue":1,"Range":30,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":1,"Description":"Restores target's HP.\n\nCure Potency: 600 Additional Effect: Increases Faerie Gauge by 10
\n
\n Aetherflow Gauge Cost: 1","DescriptionJSON":null,"EffectRange":0,"ID":189,"IconHD":"/i/002000/002805_hr1.png","Name":"Lustrate","PreservesCombo":1,"PrimaryCostType":30,"PrimaryCostValue":1,"Range":30,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 400","DescriptionJSON":null,"EffectRange":0,"ID":190,"IconHD":"/i/000000/000518_hr1.png","Name":"Physick","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":52,"CooldownGroup":10,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 400 Additional Effect: Increases Faerie Gauge by 10
\n
\n Aetherflow Gauge Cost: 1","DescriptionJSON":null,"EffectRange":15,"ID":3583,"IconHD":"/i/002000/002806_hr1.png","Name":"Indomitability","PreservesCombo":1,"PrimaryCostType":30,"PrimaryCostValue":1,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":54,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 240.","DescriptionJSON":null,"EffectRange":0,"ID":3584,"IconHD":"/i/002000/002807_hr1.png","Name":"Broil","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":184,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":56,"CooldownGroup":20,"Description":"Extends Galvanize effect cast on self or target to nearby party members.\n\nDuration: Time remaining on original effect\n\nNo effect when target is not under the effect of Galvanize.","DescriptionJSON":null,"EffectRange":10,"ID":3585,"IconHD":"/i/002000/002808_hr1.png","Name":"Deployment Tactics","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":58,"CooldownGroup":7,"Description":"Transforms the next Galvanize and Catalyze statuses into HP recovery equaling the amount of damage reduction intended for the barrier.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":3586,"IconHD":"/i/002000/002809_hr1.png","Name":"Emergency Tactics","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":150,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":24,"Description":"Orders your faerie away while granting you a full Aetherflow stack. Also increases healing magic potency by 20%.\n\nDuration: 30s\n\nCurrent faerie will return once the effect expires.\n\nSummon Eos or Summon Selene cannot be executed while under the effect of Dissipation.\n\nCan only be executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":3587,"IconHD":"/i/002000/002810_hr1.png","Name":"Dissipation","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1800,"SecondaryCostType":102,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":62,"CooldownGroup":12,"Description":"Grants self or target party member the effect of Excogitation, restoring HP when member's HP falls below 50% or upon effect duration expiration.\n\nCure Potency: 800\n\nDuration: 45s Additional Effect: Increases Faerie Gauge by 10
\n
\n Aetherflow Gauge Cost: 1","DescriptionJSON":null,"EffectRange":0,"ID":7434,"IconHD":"/i/002000/002813_hr1.png","Name":"Excogitation","PreservesCombo":1,"PrimaryCostType":30,"PrimaryCostValue":1,"Range":30,"Recast100ms":450,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 260.","DescriptionJSON":null,"EffectRange":0,"ID":7435,"IconHD":"/i/002000/002814_hr1.png","Name":"Broil II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":184,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":66,"CooldownGroup":21,"Description":"Increases rate at which target takes critical hits by 10%.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":7436,"IconHD":"/i/002000/002815_hr1.png","Name":"Chain Stratagem","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":3,"Description":"Orders faerie to execute Fey Union with target party member. Effect ends upon reuse.\n\nFaerie Gauge Cost: 10\n\nThe Faerie Gauge increases when a faerie or Seraph is summoned and an Aetherflow action is successfully executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":7437,"IconHD":"/i/002000/002816_hr1.png","Name":"Aetherpact","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":30,"SecondaryCostType":77,"SecondaryCostValue":10,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":20,"CooldownGroup":14,"Description":"Orders faerie to execute Whispering Dawn. If Seraph is summoned, orders her to execute Angel's Whisper. Whispering Dawn /Angel's Whisper Effect: Gradually restores the HP of all nearby party members\n\nCure Potency: 120\n\nDuration: 21s","DescriptionJSON":null,"EffectRange":0,"ID":16537,"IconHD":"/i/002000/002852_hr1.png","Name":"Whispering Dawn","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":40,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":22,"Description":"Orders faerie to execute Fey Illumination. If Seraph is summoned, orders her to execute Seraphic Illumination. Fey Illumination /Seraphic Illumination Effect: Increases healing magic potency of all nearby party members by 10%, while reducing magic damage taken by all nearby party members by 5%\n\nDuration: 20s
\nEffect cannot be stacked with Seraphic Illumination.","DescriptionJSON":null,"EffectRange":0,"ID":16538,"IconHD":"/i/002000/002853_hr1.png","Name":"Fey Illumination","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":40,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":46,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 160 to all nearby enemies.","DescriptionJSON":null,"EffectRange":5,"ID":16539,"IconHD":"/i/002000/002819_hr1.png","Name":"Art of War","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":6,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals unaspected damage over time.\n\nPotency: 70\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":16540,"IconHD":"/i/002000/002820_hr1.png","Name":"Biolysis","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":311,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 290.","DescriptionJSON":null,"EffectRange":0,"ID":16541,"IconHD":"/i/002000/002821_hr1.png","Name":"Broil III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":312,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":74,"CooldownGroup":18,"Description":"Allows the execution of Adloquium, Succor, Indomitability, or Excogitation without consuming resources while also ensuring critical HP is restored.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":16542,"IconHD":"/i/002000/002822_hr1.png","Name":"Recitation","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":15,"Description":"Orders faerie to execute Fey Blessing.\n\nFey Blessing Effect: Restores the HP of all nearby party members\n\nCure Potency: 350\n\nFaerie Gauge Cost: 10","DescriptionJSON":null,"EffectRange":0,"ID":16543,"IconHD":"/i/002000/002854_hr1.png","Name":"Fey Blessing","PreservesCombo":1,"PrimaryCostType":46,"PrimaryCostValue":10,"Range":0,"Recast100ms":600,"SecondaryCostType":40,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":23,"Description":"Summons Seraph to fight at your side. When set to guard, automatically casts Seraphic Veil on party members who suffer damage.\n\nCannot summon Seraph unless a pet is already summoned. Current pet will leave the battlefield while Seraph is present, and return once gone.\n\nDuration: 22s","DescriptionJSON":null,"EffectRange":0,"ID":16545,"IconHD":"/i/002000/002850_hr1.png","Name":"Summon Seraph","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":40,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":8,"Description":"Orders Seraph to execute Consolation.\n\nConsolation Effect: Restores the HP of all nearby party members\n\nCure Potency: 300\n\nAdditional Effect: Erects a magicked barrier which nullifies damage equaling the amount of HP restored\n\nDuration: 30s\n\nMaximum Charges: 2","DescriptionJSON":null,"EffectRange":0,"ID":16546,"IconHD":"/i/002000/002851_hr1.png","Name":"Consolation","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":94,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Summons the faerie Eos to fight at your side. When set to guard, automatically casts Embrace on party members who suffer damage.","DescriptionJSON":null,"EffectRange":0,"ID":17215,"IconHD":"/i/002000/002823_hr1.png","Name":"Summon Eos","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":94,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Summons the faerie Selene to fight at your side. When set to guard, automatically casts Embrace on party members who suffer damage.","DescriptionJSON":null,"EffectRange":0,"ID":17216,"IconHD":"/i/002000/002824_hr1.png","Name":"Summon Selene","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":94,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Deals unaspected damage over time.\n\nPotency: 20\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":17864,"IconHD":"/i/000000/000503_hr1.png","Name":"Bio","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":324,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Deals unaspected damage over time.\n\nPotency: 40\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":17865,"IconHD":"/i/000000/000504_hr1.png","Name":"Bio II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":311,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 160.","DescriptionJSON":null,"EffectRange":0,"ID":17869,"IconHD":"/i/000000/000501_hr1.png","Name":"Ruin","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":214,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":38,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 200 .","DescriptionJSON":null,"EffectRange":0,"ID":17870,"IconHD":"/i/000000/000502_hr1.png","Name":"Ruin II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"29":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 230.
\nAdditional Effect: Increases Ninki Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":2240,"IconHD":"/i/000000/000601_hr1.png","Name":"Spinning Edge","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":2,"CooldownGroup":21,"Description":"Create shadows that nullify damage up to 20% of maximum HP.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":2241,"IconHD":"/i/000000/000607_hr1.png","Name":"Shade Shift","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":2240,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Spinning Edge\n\nCombo Potency: 340
\nCombo Bonus: Increases Ninki Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":2242,"IconHD":"/i/000000/000602_hr1.png","Name":"Gust Slash","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":10,"CooldownGroup":6,"Description":"Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on enemies 10 levels higher than your own, or certain enemies with special sight. Additional Effect: Restores 2 charges to all mudra
\n
\n Cannot be executed while in combat.\n\nEffect ends upon use of any action other than Sprint, or upon reuse of Hide.","DescriptionJSON":null,"EffectRange":0,"ID":2245,"IconHD":"/i/000000/000609_hr1.png","Name":"Hide","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":38,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Delivers a ranged attack with a potency of 120.
\nAdditional Effect: Increases Ninki Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":2247,"IconHD":"/i/000000/000614_hr1.png","Name":"Throwing Dagger","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":18,"Description":"Delivers an attack with a potency of 150.\n\nAdditional Effect: Increases the chance of additional items being dropped by target if Mug is dealt before, or as, the finishing blow
\nAdditional Effect: Increases Ninki Gauge by 40","DescriptionJSON":null,"EffectRange":0,"ID":2248,"IconHD":"/i/000000/000613_hr1.png","Name":"Mug","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":38,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 120 to all nearby enemies.
\nAdditional Effect: Increases Ninki Gauge by 5","DescriptionJSON":null,"EffectRange":5,"ID":2254,"IconHD":"/i/000000/000615_hr1.png","Name":"Death Blossom","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":2242,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\n160 when executed from a target's rear.\n\nCombo Action: Gust Slash\n\nCombo Potency: 420\n\nRear Combo Potency: 480
\nCombo Bonus: Increases Ninki Gauge by","DescriptionJSON":null,"EffectRange":0,"ID":2255,"IconHD":"/i/000000/000605_hr1.png","Name":"Aeolian Edge","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":10,"Description":"Delivers an attack with a potency of 200.\n\nAdditional Effect: Damage over time\n\nPotency: 90\n\nDuration: 30s Additional Effect: Increases Ninki Gauge by This action does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":0,"ID":2257,"IconHD":"/i/000000/000606_hr1.png","Name":"Shadow Fang","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":700,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":18,"CooldownGroup":12,"Description":"Delivers an attack with a potency of 350.\n\n500 when executed from a target's rear.\n\nAdditional Effect: Increases target's damage taken by 5%\n\nDuration: 15s\n\nCan only be executed while under the effect of Hidden.","DescriptionJSON":null,"EffectRange":0,"ID":2258,"IconHD":"/i/000000/000618_hr1.png","Name":"Trick Attack","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":600,"SecondaryCostType":35,"SecondaryCostValue":507,"TargetArea":0}],"30":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":2,"Description":"Delivers a critical direct hit with a potency of 200.\n\nCan only be executed when Assassinate Ready.","DescriptionJSON":null,"EffectRange":0,"ID":2246,"IconHD":"/i/000000/000612_hr1.png","Name":"Assassinate","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":10,"SecondaryCostType":32,"SecondaryCostValue":1955,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":9,"Description":"Make the ritual mudra hand gesture for “heaven.”\n\nDuration: 6s\n\nMaximum Charges: 2\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\nConversely, execution of weaponskills triggers the cooldown of this action.","DescriptionJSON":null,"EffectRange":0,"ID":2259,"IconHD":"/i/002000/002901_hr1.png","Name":"Ten","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Executes a specific ninjutsu action coinciding with the combination of mudra made immediately beforehand.\n\nIf any other action is used before the mudra are combined and the ninjutsu executed, Ninjutsu will fail.\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\nConversely, execution of weaponskills triggers the cooldown of this action.","DescriptionJSON":null,"EffectRange":0,"ID":2260,"IconHD":"/i/002000/002904_hr1.png","Name":"Ninjutsu","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":0,"Recast100ms":15,"SecondaryCostType":32,"SecondaryCostValue":496,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":9,"Description":"Make the ritual mudra hand gesture for “earth.”\n\nDuration: 6s\n\nMaximum Charges: 2\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\nConversely, execution of weaponskills triggers the cooldown of this action.","DescriptionJSON":null,"EffectRange":0,"ID":2261,"IconHD":"/i/002000/002902_hr1.png","Name":"Chi","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":7,"ClassJobLevel":40,"CooldownGroup":13,"Description":"Move quickly to the specified location. Maximum Charges: 2
\n
\n Cannot be executed while bound.","DescriptionJSON":null,"EffectRange":1,"ID":2262,"IconHD":"/i/002000/002905_hr1.png","Name":"Shukuchi","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":9,"Description":"Make the ritual mudra hand gesture for “man.”\n\nDuration: 6s\n\nMaximum Charges: 2\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\nConversely, execution of weaponskills triggers the cooldown of this action.","DescriptionJSON":null,"EffectRange":0,"ID":2263,"IconHD":"/i/002000/002903_hr1.png","Name":"Jin","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":14,"Description":"Allows the execution of a single ninjutsu without consumption of mudra charges.\n\nAdditional Effect: Increases damage for the next ninjutsu action by 30%\n\nDuration: 15s\n\nRecast timer of mudra is not affected by the execution of this action.","DescriptionJSON":null,"EffectRange":0,"ID":2264,"IconHD":"/i/002000/002906_hr1.png","Name":"Kassatsu","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Delivers a ranged ninjutsu attack with a potency of 500.\n\nMudra Combination: Any one of the Ten, Chi, or Jin mudra\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":2265,"IconHD":"/i/002000/002907_hr1.png","Name":"Fuma Shuriken","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":25,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 500 to target and all enemies nearby it.\n\nMudra Combination: ChiTen or JinTen\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":2266,"IconHD":"/i/002000/002908_hr1.png","Name":"Katon","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":15,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Deals lightning damage with a potency of 800.\n\nMudra Combination: TenChi or JinChi\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":2267,"IconHD":"/i/002000/002912_hr1.png","Name":"Raiton","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":15,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Deals ice damage with a potency of 400.\n\nAdditional Effect: Bind\n\nDuration: 15s\n\nMudra Combination: TenJin or ChiJin\n\nCancels auto-attack upon execution.\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":2268,"IconHD":"/i/002000/002909_hr1.png","Name":"Hyoton","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":25,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Reduces weaponskill recast time and auto-attack delay by 15%.\n\nDuration: 70s\n\nMudra Combination: JinChiTen or ChiJinTen\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":2269,"IconHD":"/i/002000/002910_hr1.png","Name":"Huton","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":0,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":7,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Creates a patch of corrupted earth, dealing damage with a potency of 100 to any enemies who enter.\n\nDuration: 24s\n\nAdditional Effect: Heavy +40%\n\nMudra Combination: TenJinChi or JinTenChi\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":2270,"IconHD":"/i/002000/002911_hr1.png","Name":"Doton","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":0,"Recast100ms":15,"SecondaryCostType":33,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Deals water damage with a potency of 600.\n\nAdditional Effect: Grants Suiton\n\nDuration: 20s\n\nSuiton Effect: Allows execution of actions which require the effect of Hidden, without being under that effect\n\nMudra Combination: TenChiJin or ChiTenJin\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":2271,"IconHD":"/i/002000/002913_hr1.png","Name":"Suiton","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":15,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":2242,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\n160 when executed from a target's flank.\n\nCombo Action: Gust Slash\n\nCombo Potency: 400\n\nFlank Combo Potency: 460\n\nCombo Bonus: Extends Huton duration by 30s to a maximum of 70s
\nCombo Bonus: Increases Ninki Gauge by","DescriptionJSON":null,"EffectRange":0,"ID":3563,"IconHD":"/i/002000/002915_hr1.png","Name":"Armor Crush","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":56,"CooldownGroup":16,"Description":"Delivers a threefold attack, each hit with a potency of 200.
\nAdditional Effect: Grants Assassinate Ready
\n
\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":3566,"IconHD":"/i/002000/002918_hr1.png","Name":"Dream Within a Dream","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":62,"CooldownGroup":3,"Description":"Deals fire damage with a potency of 200 to target and all enemies nearby it.\n\nNinki Gauge Cost: 50\n\nShares a recast timer with Bhavacakra.","DescriptionJSON":null,"EffectRange":6,"ID":7401,"IconHD":"/i/002000/002920_hr1.png","Name":"Hellfrog Medium","PreservesCombo":1,"PrimaryCostType":27,"PrimaryCostValue":50,"Range":25,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":3,"Description":"Deals unaspected damage with a potency of 300.\n\nNinki Gauge Cost: 50\n\nShares a recast timer with Hellfrog Medium.","DescriptionJSON":null,"EffectRange":0,"ID":7402,"IconHD":"/i/002000/002921_hr1.png","Name":"Bhavacakra","PreservesCombo":1,"PrimaryCostType":27,"PrimaryCostValue":50,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":20,"Description":"Temporarily converts each of the three mudra into a ninjutsu action. Executing one of these actions will convert the remaining mudra into different ninjutsu actions until all three have been executed or the Ten Chi Jin effect expires.\n\nDuration: 6s\n\nOnly ninjutsu available while active. The same ninjutsu cannot be executed twice.\n\nCannot be executed while under the effect of Kassatsu. Effect ends upon moving.","DescriptionJSON":null,"EffectRange":0,"ID":7403,"IconHD":"/i/002000/002922_hr1.png","Name":"Ten Chi Jin","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":46,"SecondaryCostValue":497,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":2254,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":52,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby enemies.\n\nCombo Action: Death Blossom\n\nCombo Potency: 140\n\nCombo Bonus: Extends Huton duration by 10s to a maximum of 70s
\nAdditional Effect: Increases Ninki Gauge by 5","DescriptionJSON":null,"EffectRange":5,"ID":16488,"IconHD":"/i/002000/002923_hr1.png","Name":"Hakke Mujinsatsu","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":72,"CooldownGroup":17,"Description":"Dispel Suiton, increasing the Ninki Gauge by 50.\n\nCan only be executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":16489,"IconHD":"/i/002000/002924_hr1.png","Name":"Meisui","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":507,"Range":0,"Recast100ms":1200,"SecondaryCostType":42,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 750 to target and all enemies nearby it.\n\nMudra Combination: ChiTen or JinTen\n\nCan only be executed while under the effect of Kassatsu.\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":16491,"IconHD":"/i/002000/002925_hr1.png","Name":"Goka Mekkyaku","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":15,"Recast100ms":15,"SecondaryCostType":32,"SecondaryCostValue":497,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Deals ice damage with a potency of 1,200.\n\nMudra Combination: ChiJin or TenJin\n\nCan only be executed while under the effect of Kassatsu.\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16492,"IconHD":"/i/002000/002926_hr1.png","Name":"Hyosho Ranryu","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":25,"Recast100ms":15,"SecondaryCostType":32,"SecondaryCostValue":497,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":22,"Description":"Grants 5 stacks of Bunshin, each stack allowing your shadow to attack enemies each time you execute a weaponskill. Shadow attack potency varies based on the attack executed, but is not affected by combo bonuses.\n\nMelee Attack Potency: 200\n\nRanged Attack Potency: 100\n\nArea Attack Potency: 100\n\nNinki Gauge increases by 5 each time your shadow lands an attack.\n\nDuration: 30s\n\nNinki Gauge Cost: 50","DescriptionJSON":null,"EffectRange":0,"ID":16493,"IconHD":"/i/002000/002927_hr1.png","Name":"Bunshin","PreservesCombo":1,"PrimaryCostType":27,"PrimaryCostValue":50,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"31":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":4,"Description":"Deploys a single-target battle turret which attacks using Volley Fire, dealing damage with a potency of 80.\n\nBattery Gauge Cost: 50\n\nDuration increases as Battery Gauge exceeds required cost at time of deployment, up to a maximum of 15 seconds.\n\nConsumes Battery Gauge upon execution.\n\nShuts down when time expires or upon execution of Rook Overdrive.\n\nShares a recast timer with Rook Overdrive.","DescriptionJSON":null,"EffectRange":0,"ID":2864,"IconHD":"/i/003000/003026_hr1.png","Name":"Rook Autoturret","PreservesCombo":1,"PrimaryCostType":62,"PrimaryCostValue":50,"Range":0,"Recast100ms":60,"SecondaryCostType":101,"SecondaryCostValue":50,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 180.
\nAdditional Effect: Increases Heat Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":2866,"IconHD":"/i/003000/003001_hr1.png","Name":"Split Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":288,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":2866,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Split Shot or Heated Split Shot\n\nCombo Potency: 260
\nCombo Bonus: Increases Heat Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":2868,"IconHD":"/i/003000/003002_hr1.png","Name":"Slug Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":289,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":18,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 180 to all enemies in a cone before you.
\nAdditional Effect: Increases Heat Gauge by 5","DescriptionJSON":null,"EffectRange":12,"ID":2870,"IconHD":"/i/003000/003014_hr1.png","Name":"Spread Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":12,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":10,"Description":"Delivers an attack with a potency of 300.
\nAdditional Effect: Increases Battery Gauge by 20 This weaponskill does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":0,"ID":2872,"IconHD":"/i/003000/003003_hr1.png","Name":"Hot Shot","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":400,"SecondaryCostType":63,"SecondaryCostValue":291,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":2868,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Slug Shot or Heated Slug Shot\n\nCombo Potency: 340
\nCombo Bonus: Increases Heat Gauge by 5
\nCombo Bonus: Increases Battery Gauge by 10","DescriptionJSON":null,"EffectRange":0,"ID":2873,"IconHD":"/i/003000/003004_hr1.png","Name":"Clean Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":290,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":8,"Description":"Delivers an attack with a potency of 150.\n\nMaximum Charges: 3","DescriptionJSON":null,"EffectRange":0,"ID":2874,"IconHD":"/i/003000/003005_hr1.png","Name":"Gauss Round","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":10,"CooldownGroup":12,"Description":"Guarantees that next weaponskill is a critical direct hit.\n\nDuration: 5s\n\nThis action does not affect damage over time effects.","DescriptionJSON":null,"EffectRange":0,"ID":2876,"IconHD":"/i/003000/003022_hr1.png","Name":"Reassemble","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":550,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":20,"Description":"Covers target's body in a slow-burning pitch. Action is changed to Detonator for the duration of the effect.\n\nDeals damage when time expires or upon executing Detonator.\n\nPotency is increased by 200 for each of your own weaponskills you land prior to the end of the effect.\n\nDuration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":2878,"IconHD":"/i/003000/003018_hr1.png","Name":"Wildfire","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":50,"CooldownGroup":9,"Description":"Deals damage to all nearby enemies with a potency of 150 for the first enemy, and 50% less for all remaining enemies.\n\nMaximum Charges: 3","DescriptionJSON":null,"EffectRange":5,"ID":2890,"IconHD":"/i/003000/003017_hr1.png","Name":"Ricochet","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 220.\n\nAdditional Effect: Reduces the recast time of both Gauss Round and Ricochet by 15s\n\nCan only be executed when firearm is Overheated.\n\nRecast timer cannot be affected by status effects or gear attributes.","DescriptionJSON":null,"EffectRange":0,"ID":7410,"IconHD":"/i/003000/003030_hr1.png","Name":"Heat Blast","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":69,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 220.
\nAdditional Effect: Increases Heat Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":7411,"IconHD":"/i/003000/003031_hr1.png","Name":"Heated Split Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":2866,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Heated Split Shot\n\nCombo Potency: 330
\nCombo Bonus: Increases Heat Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":7412,"IconHD":"/i/003000/003032_hr1.png","Name":"Heated Slug Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":2868,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Heated Slug Shot\n\nCombo Potency: 440
\nCombo Bonus: Increases Heat Gauge by 5
\nCombo Bonus: Increases Battery Gauge by 10","DescriptionJSON":null,"EffectRange":0,"ID":7413,"IconHD":"/i/003000/003033_hr1.png","Name":"Heated Clean Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":66,"CooldownGroup":21,"Description":"Increases Heat Gauge by 50.\n\nCan only be executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":7414,"IconHD":"/i/003000/003034_hr1.png","Name":"Barrel Stabilizer","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":42,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":4,"Description":"Orders the rook autoturret to use Rook Overload.\n\nRook Overload Potency: 400\n\nPotency increases as Battery Gauge exceeds required cost at time of deployment.\n\nThe rook autoturret shuts down after execution. If this action is not used manually while the rook autoturret is active, it will be triggered automatically immediately before shutting down.\n\nShares a recast timer with Rook Autoturret.","DescriptionJSON":null,"EffectRange":0,"ID":7415,"IconHD":"/i/003000/003035_hr1.png","Name":"Rook Overdrive","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":150,"SecondaryCostType":40,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":0,"Description":"Delivers an attack with a potency of 400.\n\nPotency increases as Battery Gauge exceeds required cost at time of deployment.\n\nThe rook autoturret shuts down after execution. If this action is not used manually while the rook autoturret is active, it will be triggered automatically immediately before shutting down.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7416,"IconHD":"/i/003000/003036_hr1.png","Name":"Rook Overload","PreservesCombo":0,"PrimaryCostType":2,"PrimaryCostValue":0,"Range":40,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":13,"Description":"Delivers damage over time to all enemies in a cone before you.\n\nPotency: 100\n\nDuration: 10s\n\nEffect ends upon using another action or moving (including facing a different direction).\n\nCancels auto-attack upon execution.\n\nTriggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.","DescriptionJSON":null,"EffectRange":8,"ID":7418,"IconHD":"/i/003000/003038_hr1.png","Name":"Flamethrower","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":52,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 180 to all enemies in a cone before you.\n\nCan only be executed when firearm is Overheated.\n\nRecast timer cannot be affected by status effects or gear attributes.","DescriptionJSON":null,"EffectRange":12,"ID":16497,"IconHD":"/i/003000/003042_hr1.png","Name":"Auto Crossbow","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":12,"Recast100ms":25,"SecondaryCostType":69,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":58,"CooldownGroup":7,"Description":"Delivers an attack with a potency of 700. Shares a recast timer with Bioblaster.","DescriptionJSON":null,"EffectRange":0,"ID":16498,"IconHD":"/i/003000/003043_hr1.png","Name":"Drill","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":72,"CooldownGroup":7,"Description":"Delivers an attack with a potency of 60 to all enemies in a cone before you.\n\nAdditional Effect: Damage over time\n\nPotency: 60\n\nDuration: 15s\n\nShares a recast timer with Drill.","DescriptionJSON":null,"EffectRange":12,"ID":16499,"IconHD":"/i/003000/003044_hr1.png","Name":"Bioblaster","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":12,"Recast100ms":200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":11,"Description":"Delivers an attack with a potency of 700.\n\nAdditional Effect: Increases Battery Gauge by 20\n\nThis action does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":0,"ID":16500,"IconHD":"/i/003000/003045_hr1.png","Name":"Air Anchor","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":400,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":2,"Description":"Deploys an Automaton Queen to fight at your side.\n\nBattery Gauge Cost: 50\n\nDuration increases as Battery Gauge exceeds minimum cost at time of deployment, up to a maximum of 20 seconds.\n\nConsumes Battery Gauge upon execution.\n\nShuts down when time expires or upon execution of Queen Overdrive.\n\nShares a recast timer with Queen Overdrive.","DescriptionJSON":null,"EffectRange":0,"ID":16501,"IconHD":"/i/003000/003501_hr1.png","Name":"Automaton Queen","PreservesCombo":1,"PrimaryCostType":62,"PrimaryCostValue":50,"Range":0,"Recast100ms":60,"SecondaryCostType":97,"SecondaryCostValue":50,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":2,"Description":"Orders the Automaton Queen to use Pile Bunker.\n\nPile Bunker Potency: 800\n\nPotency increases as Battery Gauge exceeds required cost at time of deployment.\n\nThe Automaton Queen shuts down after execution. If this action is not used manually while the Automaton Queen is active, it will be triggered automatically immediately before shutting down.\n\nShares a recast timer with Automaton Queen.","DescriptionJSON":null,"EffectRange":0,"ID":16502,"IconHD":"/i/003000/003502_hr1.png","Name":"Queen Overdrive","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":150,"SecondaryCostType":40,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":0,"Description":"Delivers an attack with a potency of 800.\n\nPotency increases as Battery Gauge exceeds required cost at time of deployment.\n\nThe Automaton Queen shuts down after execution. If this action is not used manually while the Automaton Queen is active, it will be triggered automatically immediately before shutting down.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16503,"IconHD":"/i/003000/003503_hr1.png","Name":"Pile Bunker","PreservesCombo":0,"PrimaryCostType":2,"PrimaryCostValue":0,"Range":3,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 150.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16504,"IconHD":"/i/003000/003504_hr1.png","Name":"Arm Punch","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":3,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":1,"Description":"Ends the effect of Wildfire, dealing damage to the target.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16766,"IconHD":"/i/003000/003039_hr1.png","Name":"Detonator","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":56,"CooldownGroup":24,"Description":"Reduces damage taken by self and nearby party members by 10%.\n\nDuration: 15s\n\nEffect cannot be stacked with bard's Troubadour or dancer's Shield Samba.","DescriptionJSON":null,"EffectRange":20,"ID":16889,"IconHD":"/i/003000/003040_hr1.png","Name":"Tactician","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Rushes target and delivers an attack with a potency of 300.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":17206,"IconHD":"/i/003000/003505_hr1.png","Name":"Roller Dash","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":30,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":5,"Description":"Releases the energy building in your firearm, causing it to become Overheated, increasing the potency of single-target weaponskills by 20.\n\nDuration: 8s\n\nHeat Gauge Cost: 50\n\nOverheated effect only applicable to machinist job actions.","DescriptionJSON":null,"EffectRange":0,"ID":17209,"IconHD":"/i/003000/003041_hr1.png","Name":"Hypercharge","PreservesCombo":1,"PrimaryCostType":61,"PrimaryCostValue":50,"Range":0,"Recast100ms":100,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"32":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 200.","DescriptionJSON":null,"EffectRange":0,"ID":3617,"IconHD":"/i/003000/003051_hr1.png","Name":"Hard Slash","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":6,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 150 to all nearby enemies.","DescriptionJSON":null,"EffectRange":5,"ID":3621,"IconHD":"/i/003000/003063_hr1.png","Name":"Unleash","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":3617,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Hard Slash\n\nCombo Potency: 300\n\nCombo Bonus: Restores MP","DescriptionJSON":null,"EffectRange":0,"ID":3623,"IconHD":"/i/003000/003054_hr1.png","Name":"Syphon Strike","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 150.\n\nAdditional Effect: Increased enmity","DescriptionJSON":null,"EffectRange":0,"ID":3624,"IconHD":"/i/003000/003062_hr1.png","Name":"Unmend","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":12,"Description":"Increases Blood Gauge by 10 and restores MP upon landing weaponskills or spells.\n\nEffect does not stack when hitting multiple targets with a single attack.\n\nDuration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":3625,"IconHD":"/i/003000/003071_hr1.png","Name":"Blood Weapon","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":10,"CooldownGroup":5,"Description":"Significantly increases enmity generation.\n\nEffect ends upon reuse.","DescriptionJSON":null,"EffectRange":0,"ID":3629,"IconHD":"/i/003000/003070_hr1.png","Name":"Grit","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":100,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":3623,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Syphon Strike\n\nCombo Potency: 400\n\nCombo Bonus: Restores own HP\n\nCure Potency: 300
\nCombo Bonus: Increases Blood Gauge by 20","DescriptionJSON":null,"EffectRange":0,"ID":3632,"IconHD":"/i/003000/003055_hr1.png","Name":"Souleater","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":13,"Description":"Reduces magic vulnerability by 20%.\n\nDuration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":3634,"IconHD":"/i/003000/003076_hr1.png","Name":"Dark Mind","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":38,"CooldownGroup":21,"Description":"Reduces damage taken by 30%.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":3636,"IconHD":"/i/003000/003075_hr1.png","Name":"Shadow Wall","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":25,"Description":"Grants the effect of Living Dead. When HP is reduced to 0 while under the effect of Living Dead, instead of becoming KO'd, your status will change to Walking Dead.\n\nLiving Dead Duration: 10s\n\nWhile under the effect of Walking Dead, most attacks will not lower your HP below 1. If, before the Walking Dead timer runs out, HP is 100% restored, the effect will fade. If 100% is not restored, you will be KO'd.\n\nWalking Dead Duration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":3638,"IconHD":"/i/003000/003077_hr1.png","Name":"Living Dead","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":3000,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":7,"ClassJobLevel":52,"CooldownGroup":16,"Description":"Creates a patch of salted earth, dealing unaspected damage with a potency of 60 to any enemies who enter.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":5,"ID":3639,"IconHD":"/i/003000/003066_hr1.png","Name":"Salted Earth","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":10,"Description":"Delivers a jumping attack with a potency of 200. Maximum Charges: 2
\n
\n Cannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":3640,"IconHD":"/i/003000/003061_hr1.png","Name":"Plunge","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":56,"CooldownGroup":14,"Description":"Deals unaspected damage with a potency of 200 to target and all enemies nearby it.\n\nAdditional Effect: Restores own HP\n\nCure Potency: 200","DescriptionJSON":null,"EffectRange":5,"ID":3641,"IconHD":"/i/003000/003064_hr1.png","Name":"Abyssal Drain","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":15,"Description":"Delivers a threefold attack with a potency of 450.\n\nAdditional Effect: Restores MP","DescriptionJSON":null,"EffectRange":0,"ID":3643,"IconHD":"/i/003000/003058_hr1.png","Name":"Carve and Spit","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":17,"Description":"Allows the execution of Quietus and Bloodspiller without cost, restoring MP when landing either weaponskill.\n\nDuration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":7390,"IconHD":"/i/003000/003078_hr1.png","Name":"Delirium","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 210 to all nearby enemies.\n\nBlood Gauge Cost: 50","DescriptionJSON":null,"EffectRange":5,"ID":7391,"IconHD":"/i/003000/003079_hr1.png","Name":"Quietus","PreservesCombo":1,"PrimaryCostType":25,"PrimaryCostValue":50,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":62,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 600.\n\nBlood Gauge Cost: 50","DescriptionJSON":null,"EffectRange":0,"ID":7392,"IconHD":"/i/003000/003080_hr1.png","Name":"Bloodspiller","PreservesCombo":1,"PrimaryCostType":25,"PrimaryCostValue":50,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":8,"Description":"Creates a barrier around target that absorbs damage totaling 25% of target's maximum HP.\n\nDuration: 7s\n\nGrants Dark Arts when barrier is completely absorbed.\n\nDark Arts Effect: Consume Dark Arts instead of MP to execute Edge of Shadow or Flood of Shadow","DescriptionJSON":null,"EffectRange":0,"ID":7393,"IconHD":"/i/003000/003081_hr1.png","Name":"The Blackest Night","PreservesCombo":1,"PrimaryCostType":3,"PrimaryCostValue":30,"Range":30,"Recast100ms":150,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":30,"CooldownGroup":1,"Description":"Deals unaspected damage with a potency of 250 to all enemies in a straight line before you.\n\nAdditional Effect: Grants Darkside, increasing damage dealt by 10%\n\nDuration: 30s\n\nExtends Darkside duration by 30s to a maximum of 60s.\n\nShares a recast timer with Edge of Darkness.","DescriptionJSON":null,"EffectRange":10,"ID":16466,"IconHD":"/i/003000/003082_hr1.png","Name":"Flood of Darkness","PreservesCombo":1,"PrimaryCostType":3,"PrimaryCostValue":30,"Range":10,"Recast100ms":20,"SecondaryCostType":63,"SecondaryCostValue":271,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":1,"Description":"Deals unaspected damage with a potency of 350.\n\nAdditional Effect: Grants Darkside, increasing damage dealt by 10%\n\nDuration: 30s\n\nExtends Darkside duration by 30s to a maximum of 60s.\n\nShares a recast timer with Flood of Darkness.","DescriptionJSON":null,"EffectRange":0,"ID":16467,"IconHD":"/i/003000/003083_hr1.png","Name":"Edge of Darkness","PreservesCombo":1,"PrimaryCostType":3,"PrimaryCostValue":30,"Range":"-1","Recast100ms":20,"SecondaryCostType":63,"SecondaryCostValue":271,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":3621,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 100 to all nearby enemies.\n\nCombo Action: Unleash\n\nCombo Potency: 160\n\nCombo Bonus: Restores MP\n\nCombo Bonus: Increases Blood Gauge by 20","DescriptionJSON":null,"EffectRange":5,"ID":16468,"IconHD":"/i/003000/003084_hr1.png","Name":"Stalwart Soul","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":74,"CooldownGroup":1,"Description":"Deals unaspected damage with a potency of 300 to all enemies in a straight line before you.\n\nAdditional Effect: Grants Darkside, increasing damage dealt by 10%\n\nDuration: 30s\n\nExtends Darkside duration by 30s to a maximum of 60s.\n\nShares a recast timer with Edge of Shadow.","DescriptionJSON":null,"EffectRange":10,"ID":16469,"IconHD":"/i/003000/003085_hr1.png","Name":"Flood of Shadow","PreservesCombo":1,"PrimaryCostType":3,"PrimaryCostValue":30,"Range":10,"Recast100ms":20,"SecondaryCostType":62,"SecondaryCostValue":271,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":74,"CooldownGroup":1,"Description":"Deals unaspected damage with a potency of 500.\n\nAdditional Effect: Grants Darkside, increasing damage dealt by 10%\n\nDuration: 30s\n\nExtends Darkside duration by 30s to a maximum of 60s.\n\nShares a recast timer with Flood of Shadow.","DescriptionJSON":null,"EffectRange":0,"ID":16470,"IconHD":"/i/003000/003086_hr1.png","Name":"Edge of Shadow","PreservesCombo":1,"PrimaryCostType":3,"PrimaryCostValue":30,"Range":"-1","Recast100ms":20,"SecondaryCostType":62,"SecondaryCostValue":271,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":76,"CooldownGroup":18,"Description":"Reduces magic damage taken by self and nearby party members by 10%.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":15,"ID":16471,"IconHD":"/i/003000/003087_hr1.png","Name":"Dark Missionary","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":22,"Description":"Conjure a simulacrum of your darkside to fight alongside you.\n\nSimulacrum Attack Potency: 300\n\nDuration: 24s\n\nBlood Gauge Cost: 50","DescriptionJSON":null,"EffectRange":0,"ID":16472,"IconHD":"/i/003000/003088_hr1.png","Name":"Living Shadow","PreservesCombo":1,"PrimaryCostType":25,"PrimaryCostValue":50,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"33":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":8,"Description":"Draws a card (arcanum) from your divining deck. Only one arcanum can be drawn at a time.\n\nArcanum effect can be triggered using either Play or Minor Arcana .\n\nAdditional Effect: Restores 8% of maximum MP","DescriptionJSON":null,"EffectRange":0,"ID":3590,"IconHD":"/i/003000/003101_hr1.png","Name":"Draw","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":9,"Description":"Draws a different arcanum from your deck.\n\nMaximum Charges: 3","DescriptionJSON":null,"EffectRange":0,"ID":3593,"IconHD":"/i/003000/003105_hr1.png","Name":"Redraw","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":52,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 400
\nAdditional Effect: 15% chance next Benefic II will restore critical HP
\n
\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":3594,"IconHD":"/i/003000/003126_hr1.png","Name":"Benefic","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":34,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 200\n\nDiurnal Sect Effect: Regen\n\nCure Potency: 200\n\nDuration: 15s\n\nEffect cannot be stacked.
\nNocturnal Sect Effect: Erects a magicked barrier which nullifies damage equaling 250% of the amount of HP restored
\n
\nDuration: 30s
\n
\nEffect cannot be stacked with scholar's Galvanize.
\n
\nCan only be executed while under the effect of Diurnal Sect or Nocturnal Sect.","DescriptionJSON":null,"EffectRange":0,"ID":3595,"IconHD":"/i/003000/003127_hr1.png","Name":"Aspected Benefic","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":30,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":839,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 150.","DescriptionJSON":null,"EffectRange":0,"ID":3596,"IconHD":"/i/003000/003120_hr1.png","Name":"Malefic","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":187,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":54,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 170.","DescriptionJSON":null,"EffectRange":0,"ID":3598,"IconHD":"/i/003000/003122_hr1.png","Name":"Malefic II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":188,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Deals unaspected damage over time.\n\nPotency: 40\n\nDuration: 18s","DescriptionJSON":null,"EffectRange":0,"ID":3599,"IconHD":"/i/003000/003124_hr1.png","Name":"Combust","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":186,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":10,"CooldownGroup":58,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 330","DescriptionJSON":null,"EffectRange":15,"ID":3600,"IconHD":"/i/003000/003129_hr1.png","Name":"Helios","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":7,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":42,"CooldownGroup":58,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 200\n\nDiurnal Sect Effect: Regen\n\nCure Potency: 100\n\nDuration: 15s\n\nEffect cannot be stacked.
\nNocturnal Sect Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored
\n
\nDuration: 30s
\n
\nEffect cannot be stacked with scholar's Galvanize.
\n
\nCan only be executed while under the effect of Diurnal Sect or Nocturnal Sect.","DescriptionJSON":null,"EffectRange":15,"ID":3601,"IconHD":"/i/003000/003130_hr1.png","Name":"Aspected Helios","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":8,"Range":0,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":839,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":80,"CastType":1,"ClassJobLevel":12,"CooldownGroup":58,"Description":"Resurrects target to a weakened state.","DescriptionJSON":null,"EffectRange":0,"ID":3603,"IconHD":"/i/003000/003132_hr1.png","Name":"Ascend","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":24,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":5,"Description":"Adds Regen to certain actions.
\nCannot be used with Nocturnal Sect.
\n
\nShares a recast timer with Nocturnal Sect.
\n
\nEffect cannot be removed while in combat. Effect ends upon reuse.","DescriptionJSON":null,"EffectRange":0,"ID":3604,"IconHD":"/i/003000/003133_hr1.png","Name":"Diurnal Sect","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":50,"SecondaryCostType":55,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":5,"Description":"Adds a damage-nullifying barrier to certain actions. Also increases MP cost of Aspected Benefic.\n\nCannot be used with Diurnal Sect.\n\nShares a recast timer with Diurnal Sect.\n\nEffect cannot be removed while in combat.\n\nEffect ends upon reuse.","DescriptionJSON":null,"EffectRange":0,"ID":3605,"IconHD":"/i/003000/003134_hr1.png","Name":"Nocturnal Sect","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":50,"SecondaryCostType":55,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":6,"CooldownGroup":19,"Description":"Reduces cast times for spells by 2.5 seconds.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":3606,"IconHD":"/i/003000/003135_hr1.png","Name":"Lightspeed","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":46,"CooldownGroup":58,"Description":"Deals unaspected damage over time.\n\nPotency: 50\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":3608,"IconHD":"/i/003000/003125_hr1.png","Name":"Combust II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":314,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 700","DescriptionJSON":null,"EffectRange":0,"ID":3610,"IconHD":"/i/003000/003128_hr1.png","Name":"Benefic II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":7,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":20,"Description":"Generate an aetheric bond with target party member. Each time you cast a single-target healing spell on yourself or a party member, the party member with whom you have the bond will also recover HP equaling 40% of the original spell.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":3612,"IconHD":"/i/003000/003139_hr1.png","Name":"Synastry","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":7,"ClassJobLevel":58,"CooldownGroup":18,"Description":"Creates a celestial ring around the caster.\n\nDiurnal Sect Effect: Reduces damage taken by 10% and applies Wheel of Fortune to self and any party members who enter\n\nDuration: 18s\n\nWheel of Fortune Effect (Diurnal): Regen\n\nCure Potency: 100\n\nDuration: 15s\n\nNocturnal Sect Effect: Grants healing over time and applies Wheel of Fortune to self and any party members who enter\n\nCure Potency: 100\n\nDuration: 18s\n\nWheel of Fortune Effect (Nocturnal): Reduces damage taken by 10%\n\nDuration: 20s\n\nEffect ends upon using another action or moving (including facing a different direction).\n\nCancels auto-attack upon execution.\n\nCan only be executed while under the effect of Diurnal Sect or Nocturnal Sect.","DescriptionJSON":null,"EffectRange":8,"ID":3613,"IconHD":"/i/003000/003140_hr1.png","Name":"Collective Unconscious","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":47,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":11,"Description":"Restores target's HP.\n\nCure Potency: 400\n\nPotency increases up to 1,100 as the target's HP decreases.
\nMaximum Charges: 2","DescriptionJSON":null,"EffectRange":0,"ID":3614,"IconHD":"/i/003000/003141_hr1.png","Name":"Essential Dignity","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":400,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":2,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 140 to target and all enemies nearby it.","DescriptionJSON":null,"EffectRange":5,"ID":3615,"IconHD":"/i/003000/003123_hr1.png","Name":"Gravity","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":6,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":12,"Description":"Increases damage dealt by a party member or self by 6% if target is melee DPS or tank, or 3% for all other roles.\n\nDuration: 15s Additional Effect: Grants a Solar Seal when used in combat
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":4401,"IconHD":"/i/003000/003110_hr1.png","Name":"the Balance","PreservesCombo":1,"PrimaryCostType":33,"PrimaryCostValue":1,"Range":30,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":12,"Description":"Increases damage dealt by a party member or self by 6% if target is melee DPS or tank, or 3% for all other roles.\n\nDuration: 15s Additional Effect: Grants a Lunar Seal when used in combat
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":4402,"IconHD":"/i/003000/003112_hr1.png","Name":"the Arrow","PreservesCombo":1,"PrimaryCostType":33,"PrimaryCostValue":3,"Range":30,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":12,"Description":"Increases damage dealt by a party member or self by 6% if target is melee DPS or tank, or 3% for all other roles.\n\nDuration: 15s Additional Effect: Grants a Celestial Seal when used in combat
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":4403,"IconHD":"/i/003000/003113_hr1.png","Name":"the Spear","PreservesCombo":1,"PrimaryCostType":33,"PrimaryCostValue":4,"Range":30,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":12,"Description":"Increases damage dealt by a party member or self by 6% if target is ranged DPS or healer, or 3% for all other roles.\n\nDuration: 15s Additional Effect: Grants a Solar Seal when used in combat
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":4404,"IconHD":"/i/003000/003111_hr1.png","Name":"the Bole","PreservesCombo":1,"PrimaryCostType":33,"PrimaryCostValue":2,"Range":30,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":12,"Description":"Increases damage dealt by a party member or self by 6% if target is ranged DPS or healer, or 3% for all other roles.\n\nDuration: 15s Additional Effect: Grants a Lunar Seal when used in combat
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":4405,"IconHD":"/i/003000/003114_hr1.png","Name":"the Ewer","PreservesCombo":1,"PrimaryCostType":33,"PrimaryCostValue":5,"Range":30,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":12,"Description":"Increases damage dealt by a party member or self by 6% if target is ranged DPS or healer, or 3% for all other roles.\n\nDuration: 15s Additional Effect: Grants a Celestial Seal when used in combat
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":4406,"IconHD":"/i/003000/003115_hr1.png","Name":"the Spire","PreservesCombo":1,"PrimaryCostType":33,"PrimaryCostValue":6,"Range":30,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":7,"ClassJobLevel":62,"CooldownGroup":14,"Description":"Deploys an Earthly Star in the designated area and grants the effect of Earthly Dominance.\n\nDuration: 10s\n\nExecuting Stellar Detonation while under the effect of Earthly Dominance creates a Stellar Burst dealing unaspected damage with a potency of 100 to all nearby enemies. Also restores own HP and the HP of all nearby party members.\n\nCure Potency: 540\n\nAfter 10s, Earthly Dominance effect is changed to Giant Dominance.\n\nDuration: 10s\n\nWaiting 10s or executing Stellar Detonation while under the effect of Giant Dominance creates a Stellar Explosion dealing unaspected damage with a potency of 150 to all nearby enemies. Also restores own HP and the HP of all nearby party members.\n\nCure Potency: 720","DescriptionJSON":null,"EffectRange":8,"ID":7439,"IconHD":"/i/003000/003143_hr1.png","Name":"Earthly Star","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 210.","DescriptionJSON":null,"EffectRange":0,"ID":7442,"IconHD":"/i/003000/003145_hr1.png","Name":"Malefic III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":12,"Description":"Converts currently drawn arcanum into the Lord of Crowns when Balance, Arrow, or Spear, or the Lady of Crowns when Bole, Ewer, or Spire.\n\nOnly one arcanum effect can be applied to a target at a time.","DescriptionJSON":null,"EffectRange":0,"ID":7443,"IconHD":"/i/003000/003106_hr1.png","Name":"Minor Arcana","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":10,"SecondaryCostType":73,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":12,"Description":"Increases damage dealt by a party member or self by 8% if target is melee DPS or tank, or 4% for all other roles.\n\nDuration: 15s\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7444,"IconHD":"/i/003000/003147_hr1.png","Name":"Lord of Crowns","PreservesCombo":1,"PrimaryCostType":33,"PrimaryCostValue":7,"Range":30,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":12,"Description":"Increases damage dealt by a party member or self by 8% if target is ranged DPS or healer, or 4% for all other roles.\n\nDuration: 15s\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7445,"IconHD":"/i/003000/003146_hr1.png","Name":"Lady of Crowns","PreservesCombo":1,"PrimaryCostType":33,"PrimaryCostValue":8,"Range":30,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":23,"Description":"Draws a card (arcanum) from your divining deck.\n\nYou cannot draw an arcanum if you are aligned with its Seal of Arcana. When aligned with all three seals, any arcanum may be drawn.\n\nAdditional Effect: Restores 8% of maximum MP","DescriptionJSON":null,"EffectRange":0,"ID":7448,"IconHD":"/i/003000/003107_hr1.png","Name":"Sleeve Draw","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1800,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":3,"Description":"Returns the currently drawn arcanum back to your deck.","DescriptionJSON":null,"EffectRange":0,"ID":9629,"IconHD":"/i/003000/003108_hr1.png","Name":"Undraw","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":10,"SecondaryCostType":88,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":50,"CooldownGroup":24,"Description":"Increases damage dealt by self and nearby party members.\n\nDuration: 15s\n\nCan only be executed after obtaining three Seals of Arcana by playing at least three arcanum.\n\nEffectiveness is determined by the number of different types of seals in play.\n\n1 Seal Type: 4%\n\n2 Seal Types: 5%\n\n3 Seal Types: 6%","DescriptionJSON":null,"EffectRange":15,"ID":16552,"IconHD":"/i/003000/003553_hr1.png","Name":"Divination","PreservesCombo":1,"PrimaryCostType":58,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":60,"CooldownGroup":21,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 200\n\nDiurnal Sect Effect: Regen\n\nCure Potency: 100\n\nDuration: 15s\n\nEffect cannot be stacked.\n\nNocturnal Sect Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored\n\nDuration: 30s\n\nCan only be executed while under the effect of Diurnal Sect or Nocturnal Sect.","DescriptionJSON":null,"EffectRange":15,"ID":16553,"IconHD":"/i/003000/003142_hr1.png","Name":"Celestial Opposition","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":47,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals unaspected damage over time.\n\nPotency: 60\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":16554,"IconHD":"/i/003000/003554_hr1.png","Name":"Combust III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":314,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 250.","DescriptionJSON":null,"EffectRange":0,"ID":16555,"IconHD":"/i/003000/003555_hr1.png","Name":"Malefic IV","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":315,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":74,"CooldownGroup":10,"Description":"Restores own or target party member's HP.\n\nCure Potency: 200\n\nDiurnal Sect Effect: Erects a magicked barrier which nullifies damage equaling 200% of the amount of HP restored\n\nDuration: 30s\n\nNocturnal Sect Effect: Regen\n\nCure Potency: 150\n\nDuration: 15s\n\nEffect cannot be stacked.\n\nCan only be executed while under the effect of Diurnal Sect or Nocturnal Sect.","DescriptionJSON":null,"EffectRange":0,"ID":16556,"IconHD":"/i/003000/003556_hr1.png","Name":"Celestial Intersection","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":300,"SecondaryCostType":47,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":76,"CooldownGroup":15,"Description":"Reads your fortune and those of nearby party members, granting them Horoscope.\n\nDuration: 10s\n\nEffect upgraded to Horoscope Helios upon receiving the effects of Helios or Aspected Helios.\n\nDuration: 30s\n\nRestores the HP of those under either effect when the cards are read a second time or the effect expires.\n\nHoroscope Cure Potency: 200\n\nHoroscope Helios Cure Potency: 400","DescriptionJSON":null,"EffectRange":20,"ID":16557,"IconHD":"/i/003000/003550_hr1.png","Name":"Horoscope","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":22,"Description":"Increases healing magic potency by 20%.\n\nAdditional Effect: Aspected Helios and Aspected Benefic receive the effects of both Diurnal Sect and Nocturnal Sect\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":16559,"IconHD":"/i/003000/003552_hr1.png","Name":"Neutral Sect","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":12,"Description":"Triggers the effect of your drawn arcanum.\n\nOnly one arcanum effect can be applied to a target at a time.","DescriptionJSON":null,"EffectRange":0,"ID":17055,"IconHD":"/i/003000/003102_hr1.png","Name":"Play","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":10,"SecondaryCostType":73,"SecondaryCostValue":0,"TargetArea":0}],"34":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 200.
\nAdditional Effect: Increases Kenki Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":7477,"IconHD":"/i/003000/003151_hr1.png","Name":"Hakaze","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7477,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Hakaze\n\nCombo Potency: 320\n\nCombo Bonus: Increases damage dealt by 13 %\n\nDuration: 40s
\nCombo Bonus: Increases Kenki Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":7478,"IconHD":"/i/003000/003152_hr1.png","Name":"Jinpu","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7477,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":18,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Hakaze\n\nCombo Potency: 320\n\nCombo Bonus: Reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 13 %\n\nDuration: 40s
\nCombo Bonus: Increases Kenki Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":7479,"IconHD":"/i/003000/003156_hr1.png","Name":"Shifu","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7477,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Hakaze\n\nCombo Potency: 360
\nCombo Bonus: Increases Kenki Gauge by","DescriptionJSON":null,"EffectRange":0,"ID":7480,"IconHD":"/i/003000/003166_hr1.png","Name":"Yukikaze","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7478,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Jinpu\n\nCombo Potency: 480
\nRear Combo Bonus: Increases Kenki Gauge by 5
\nCombo Bonus: Increases Kenki Gauge by 5
\n
\nCombo Bonus: Grants Getsu","DescriptionJSON":null,"EffectRange":0,"ID":7481,"IconHD":"/i/003000/003158_hr1.png","Name":"Gekko","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7479,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Shifu\n\nCombo Potency: 480
\nFlank Combo Bonus: Increases Kenki Gauge by 5
\nCombo Bonus: Increases Kenki Gauge by 5
\n
\nCombo Bonus: Grants Ka","DescriptionJSON":null,"EffectRange":0,"ID":7482,"IconHD":"/i/003000/003164_hr1.png","Name":"Kasha","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all enemies in a cone before you.
\nAdditional Effect: Increases Kenki Gauge by 5","DescriptionJSON":null,"EffectRange":8,"ID":7483,"IconHD":"/i/003000/003157_hr1.png","Name":"Fuga","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":8,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7483,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby enemies.\n\nCombo Action: Fuga\n\nCombo Potency: 160\n\nCombo Bonus: Extends Jinpu duration by 15s to a maximum of 40s
\nCombo Bonus: Increases Kenki Gauge by","DescriptionJSON":null,"EffectRange":5,"ID":7484,"IconHD":"/i/003000/003163_hr1.png","Name":"Mangetsu","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7483,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby enemies.\n\nCombo Action: Fuga\n\nCombo Potency: 160\n\nCombo Bonus: Extends Shifu duration by 15s to a maximum of 40s
\nCombo Bonus: Increases Kenki Gauge by","DescriptionJSON":null,"EffectRange":5,"ID":7485,"IconHD":"/i/003000/003165_hr1.png","Name":"Oka","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Delivers a ranged attack with a potency of 100.
\nEnhanced Enpi Bonus Potency: 320
\nAdditional Effect: Increases Kenki Gauge by","DescriptionJSON":null,"EffectRange":0,"ID":7486,"IconHD":"/i/003000/003155_hr1.png","Name":"Enpi","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":18,"CastType":1,"ClassJobLevel":50,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 800. Additional Effect: Grants a stack of Meditation, up to a maximum of 3
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7487,"IconHD":"/i/003000/003162_hr1.png","Name":"Midare Setsugekka","PreservesCombo":1,"PrimaryCostType":40,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":72,"SecondaryCostValue":3,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":18,"CastType":3,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 360 to all enemies in a cone before you. Additional Effect: Grants a stack of Meditation, up to a maximum of 3
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":8,"ID":7488,"IconHD":"/i/003000/003161_hr1.png","Name":"Tenka Goken","PreservesCombo":1,"PrimaryCostType":40,"PrimaryCostValue":0,"Range":8,"Recast100ms":25,"SecondaryCostType":72,"SecondaryCostValue":2,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":18,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 250.\n\nAdditional Effect: Damage over time\n\nPotency: 40\n\nDuration: 60s Additional Effect: Grants a stack of Meditation, up to a maximum of 3
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7489,"IconHD":"/i/003000/003160_hr1.png","Name":"Higanbana","PreservesCombo":1,"PrimaryCostType":40,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":72,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":62,"CooldownGroup":2,"Description":"Delivers an attack with a potency of 320.\n\nKenki Gauge Cost: 25","DescriptionJSON":null,"EffectRange":0,"ID":7490,"IconHD":"/i/003000/003173_hr1.png","Name":"Hissatsu: Shinten","PreservesCombo":1,"PrimaryCostType":39,"PrimaryCostValue":25,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":64,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 150 to all nearby enemies.\n\nKenki Gauge Cost: 25","DescriptionJSON":null,"EffectRange":5,"ID":7491,"IconHD":"/i/003000/003174_hr1.png","Name":"Hissatsu: Kyuten","PreservesCombo":1,"PrimaryCostType":39,"PrimaryCostValue":25,"Range":0,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":6,"Description":"Rushes target and delivers an attack with a potency of 100.\n\nKenki Gauge Cost: 10\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":7492,"IconHD":"/i/003000/003169_hr1.png","Name":"Hissatsu: Gyoten","PreservesCombo":1,"PrimaryCostType":39,"PrimaryCostValue":10,"Range":20,"Recast100ms":100,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":3,"Cast100ms":0,"CastType":1,"ClassJobLevel":56,"CooldownGroup":7,"Description":"Delivers an attack with a potency of 100.\n\nAdditional Effect: 10-yalm backstep\n\nAdditional Effect: Grants Enhanced Enpi\n\nDuration: 15s\n\nKenki Gauge Cost: 10\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":7493,"IconHD":"/i/003000/003170_hr1.png","Name":"Hissatsu: Yaten","PreservesCombo":1,"PrimaryCostType":39,"PrimaryCostValue":10,"Range":5,"Recast100ms":100,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":52,"CooldownGroup":5,"Description":"Increases potency of next weaponskill by 50%.\n\nDuration: 10s\n\nKenki Gauge Cost: 20","DescriptionJSON":null,"EffectRange":0,"ID":7494,"IconHD":"/i/003000/003168_hr1.png","Name":"Hissatsu: Kaiten","PreservesCombo":1,"PrimaryCostType":39,"PrimaryCostValue":20,"Range":0,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":9,"Description":"Converts Setsu, Getsu, and Ka into Kenki. Each Sen converted increases your Kenki Gauge by 10. Can only be executed if under the effect of at least one of the three statuses.","DescriptionJSON":null,"EffectRange":0,"ID":7495,"IconHD":"/i/003000/003176_hr1.png","Name":"Hagakure","PreservesCombo":1,"PrimaryCostType":40,"PrimaryCostValue":0,"Range":0,"Recast100ms":50,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":70,"CooldownGroup":22,"Description":"Delivers an attack with a potency of 850 to all enemies in a straight line before you.\n\nKenki Gauge Cost: 50
\nShares a recast timer with Hissatsu: Senei.","DescriptionJSON":null,"EffectRange":10,"ID":7496,"IconHD":"/i/003000/003177_hr1.png","Name":"Hissatsu: Guren","PreservesCombo":1,"PrimaryCostType":39,"PrimaryCostValue":50,"Range":10,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":12,"Description":"Gradually increases your Kenki Gauge.\n\nDuration: 15s Additional Effect: Grants stacks of Meditation when used in combat, up to a maximum of 3
\n
\n Kenki Gauge not affected when used outside battle.\n\nEffect ends upon using another action or moving (including facing a different direction).\n\nCancels auto-attack upon execution.\n\nTriggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.","DescriptionJSON":null,"EffectRange":0,"ID":7497,"IconHD":"/i/003000/003172_hr1.png","Name":"Meditate","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":6,"CooldownGroup":8,"Description":"Reduces the amount of damage taken by the next attack by 10%.\n\nDuration: 3s
\nAdditional Effect: Grants Eyes Open when hit
\n
\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":7498,"IconHD":"/i/003000/003153_hr1.png","Name":"Third Eye","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":150,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":13,"Description":"Execute up to 3 weaponskill combos without meeting combo prerequisites. Does not affect Iaijutsu.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":7499,"IconHD":"/i/003000/003167_hr1.png","Name":"Meikyo Shisui","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":550,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":66,"CooldownGroup":3,"Description":"Delivers an attack with a potency of 220.\n\nKenki Gauge Cost: 15\n\nCan only be executed while under the effect of Eyes Open.\n\nShares a recast timer with Merciful Eyes.","DescriptionJSON":null,"EffectRange":0,"ID":7501,"IconHD":"/i/003000/003175_hr1.png","Name":"Hissatsu: Seigan","PreservesCombo":1,"PrimaryCostType":45,"PrimaryCostValue":15,"Range":"-1","Recast100ms":10,"SecondaryCostType":32,"SecondaryCostValue":1252,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":58,"CooldownGroup":3,"Description":"Instantly restores own HP.\n\nCure Potency: 200\n\nCan only be executed while under the effect of Eyes Open.\n\nShares a recast timer with Hissatsu: Seigan.","DescriptionJSON":null,"EffectRange":0,"ID":7502,"IconHD":"/i/003000/003171_hr1.png","Name":"Merciful Eyes","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":1252,"Range":0,"Recast100ms":10,"SecondaryCostType":32,"SecondaryCostValue":1252,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":18,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Executes a weaponskill depending on current number of Sen stored in Sen Gauge.\n\n1 Sen: Higanbana\n\n2 Sen: Tenka Goken\n\n3 Sen: Midare Setsugekka","DescriptionJSON":null,"EffectRange":0,"ID":7867,"IconHD":"/i/003000/003159_hr1.png","Name":"Iaijutsu","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":73,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":72,"CooldownGroup":22,"Description":"Delivers an attack with a potency of 1,100.\n\nKenki Gauge Cost: 50\n\nShares a recast timer with Hissatsu: Guren.","DescriptionJSON":null,"EffectRange":0,"ID":16481,"IconHD":"/i/003000/003178_hr1.png","Name":"Hissatsu: Senei","PreservesCombo":1,"PrimaryCostType":39,"PrimaryCostValue":50,"Range":"-1","Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":14,"Description":"Increases Kenki Gauge by 50.\n\nCan only be executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":16482,"IconHD":"/i/003000/003179_hr1.png","Name":"Ikishoten","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":42,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":15,"Description":"Repeats the previously executed iaijutsu with increased potency.\n\nCan only be executed immediately following Iaijutsu.\n\nTriggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.","DescriptionJSON":null,"EffectRange":0,"ID":16483,"IconHD":"/i/003000/003180_hr1.png","Name":"Tsubame-gaeshi","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":73,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":15,"Description":"Delivers an attack with a potency of 375.\n\nAdditional Effect: Damage over time\n\nPotency: 60\n\nDuration: 60s Additional Effect: Grants a stack of Meditation, up to a maximum of 3
\n
\n Effect cannot be stacked with Higanbana.\n\nTriggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16484,"IconHD":"/i/003000/003181_hr1.png","Name":"Kaeshi: Higanbana","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":600,"SecondaryCostType":14,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":76,"CooldownGroup":15,"Description":"Delivers an attack with a potency of 540 to all enemies in a cone before you. Additional Effect: Grants a stack of Meditation, up to a maximum of 3
\n
\n Triggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":8,"ID":16485,"IconHD":"/i/003000/003182_hr1.png","Name":"Kaeshi: Goken","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":8,"Recast100ms":600,"SecondaryCostType":14,"SecondaryCostValue":2,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":15,"Description":"Delivers an attack with a potency of 1,200. Additional Effect: Grants a stack of Meditation, up to a maximum of 3
\n
\n Triggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16486,"IconHD":"/i/003000/003183_hr1.png","Name":"Kaeshi: Setsugekka","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":600,"SecondaryCostType":14,"SecondaryCostValue":3,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":4,"Description":"Delivers an attack with a potency of 400.\n\nCan only be executed after accumulating three stacks of Meditation by executing Iaijutsu, Tsubame-gaeshi, or Meditate while in combat.\n\nMeditation effect fades upon execution.","DescriptionJSON":null,"EffectRange":0,"ID":16487,"IconHD":"/i/003000/003184_hr1.png","Name":"Shoha","PreservesCombo":1,"PrimaryCostType":63,"PrimaryCostValue":3,"Range":"-1","Recast100ms":150,"SecondaryCostType":109,"SecondaryCostValue":3,"TargetArea":0}],"35":[{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 180.\n\nAdditional Effect: Increases both Black Mana and White Mana by 3","DescriptionJSON":null,"EffectRange":0,"ID":7503,"IconHD":"/i/003000/003202_hr1.png","Name":"Jolt","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":195,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 130.
\nAction upgraded to Enchanted Riposte if both Black Mana and White Mana are at 30 or more.","DescriptionJSON":null,"EffectRange":0,"ID":7504,"IconHD":"/i/003000/003201_hr1.png","Name":"Riposte","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":75,"SecondaryCostValue":30,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":50,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Deals lightning damage with a potency of 370 .\n\nAdditional Effect: Increases Black Mana by 11
\nAdditional Effect: 50% chance of becoming Verfire Ready
\n
\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":7505,"IconHD":"/i/003000/003203_hr1.png","Name":"Verthunder","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":6,"CooldownGroup":11,"Description":"Rushes target and delivers an attack with a potency of 130.\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":7506,"IconHD":"/i/003000/003204_hr1.png","Name":"Corps-a-corps","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":400,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":50,"CastType":1,"ClassJobLevel":10,"CooldownGroup":58,"Description":"Deals wind damage with a potency of 370 .\n\nAdditional Effect: Increases White Mana by 11
\nAdditional Effect: 50% chance of becoming Verstone Ready
\n
\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":7507,"IconHD":"/i/003000/003205_hr1.png","Name":"Veraero","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":50,"CastType":2,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 120 to target and all enemies nearby it.\n\nAdditional Effect: Increases both Black Mana and White Mana by 3","DescriptionJSON":null,"EffectRange":5,"ID":7509,"IconHD":"/i/003000/003207_hr1.png","Name":"Scatter","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 310 .\n\nAdditional Effect: Increases Black Mana by 9\n\nCan only be executed while Verfire Ready is active.","DescriptionJSON":null,"EffectRange":0,"ID":7510,"IconHD":"/i/003000/003208_hr1.png","Name":"Verfire","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1234,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Deals earth damage with a potency of 310 .\n\nAdditional Effect: Increases White Mana by 9\n\nCan only be executed while Verstone Ready is active.","DescriptionJSON":null,"EffectRange":0,"ID":7511,"IconHD":"/i/003000/003209_hr1.png","Name":"Verstone","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1235,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7504,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Riposte or Enchanted Riposte\n\nCombo Potency: 150\n\nAction upgraded to Enchanted Zwerchhau if both Black Mana and White Mana are at 25 or more.","DescriptionJSON":null,"EffectRange":0,"ID":7512,"IconHD":"/i/003000/003210_hr1.png","Name":"Zwerchhau","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":75,"SecondaryCostValue":30,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":52,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 60 to all enemies in a cone before you.\n\nAction upgraded to Enchanted Moulinet if both Black Mana and White Mana are at 20 or more.","DescriptionJSON":null,"EffectRange":8,"ID":7513,"IconHD":"/i/003000/003215_hr1.png","Name":"Moulinet","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":8,"Recast100ms":25,"SecondaryCostType":75,"SecondaryCostValue":20,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":54,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 350","DescriptionJSON":null,"EffectRange":0,"ID":7514,"IconHD":"/i/003000/003216_hr1.png","Name":"Vercure","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":4,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":10,"Description":"Delivers an attack with a potency of 200 .\n\nAdditional Effect: 15-yalm backstep\n\nCannot be executed while bound.
\nShares a recast timer with Engagement.","DescriptionJSON":null,"EffectRange":0,"ID":7515,"IconHD":"/i/003000/003211_hr1.png","Name":"Displacement","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":5,"Recast100ms":350,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7512,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Zwerchhau or Enchanted Zwerchhau\n\nCombo Potency: 230\n\nAction upgraded to Enchanted Redoublement if both Black Mana and White Mana are at 25 or more.","DescriptionJSON":null,"EffectRange":0,"ID":7516,"IconHD":"/i/003000/003213_hr1.png","Name":"Redoublement","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":75,"SecondaryCostValue":30,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":8,"Description":"Delivers an attack with a potency of 440.","DescriptionJSON":null,"EffectRange":0,"ID":7517,"IconHD":"/i/003000/003212_hr1.png","Name":"Fleche","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":250,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":9,"Description":"Ensures the next three casts of Verthunder/Verflare or Veraero/Verholy will, for their first hits, trigger Verfire Ready or Verstone Ready respectively.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":7518,"IconHD":"/i/003000/003214_hr1.png","Name":"Acceleration","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":550,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":56,"CooldownGroup":12,"Description":"Delivers an attack with a potency of 400 to target and all enemies nearby it.","DescriptionJSON":null,"EffectRange":6,"ID":7519,"IconHD":"/i/003000/003217_hr1.png","Name":"Contre Sixte","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":450,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":58,"CooldownGroup":21,"Description":"Increases own magic damage dealt by 10% and physical damage dealt by nearby party members by 10%. Both effects are reduced by 20% every 4s.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":15,"ID":7520,"IconHD":"/i/003000/003218_hr1.png","Name":"Embolden","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":22,"Description":"Doubles current Black Mana and White Mana levels.\n\nAdditional Effect: Resets Corps-a-corps, Displacement, and Engagement recast timers
\nAdditional Effect: Increases magic damage dealt by 5%
\n
\nDuration: 10s All combos are canceled upon execution of Manafication.","DescriptionJSON":null,"EffectRange":0,"ID":7521,"IconHD":"/i/003000/003219_hr1.png","Name":"Manafication","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":100,"CastType":1,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Resurrects target to a weakened state.","DescriptionJSON":null,"EffectRange":0,"ID":7523,"IconHD":"/i/003000/003221_hr1.png","Name":"Verraise","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":24,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":62,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 290.\n\nAdditional Effect: Increases both Black Mana and White Mana by 3","DescriptionJSON":null,"EffectRange":0,"ID":7524,"IconHD":"/i/003000/003220_hr1.png","Name":"Jolt II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":195,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":7529,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 600.\n\nCombo Action: Enchanted Redoublement\n\nAdditional Effect: Increases Black Mana by 21\n\nAdditional Effect: 20% chance of becoming Verfire Ready\n\nDuration: 30s\n\nChance to become Verfire Ready increases to 100% if White Mana is higher than Black Mana at time of execution.\n\nVerthunder is changed to Verflare upon landing Enchanted Redoublement as a combo action.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7525,"IconHD":"/i/003000/003223_hr1.png","Name":"Verflare","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":58,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":7529,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 600.\n\nCombo Action: Enchanted Redoublement\n\nAdditional Effect: Increases White Mana by 21\n\nAdditional Effect: 20% chance of becoming Verstone Ready\n\nDuration: 30s\n\nChance to become Verstone Ready increases to 100% if Black Mana is higher than White Mana at time of execution.\n\nVeraero is changed to Verholy upon landing Enchanted Redoublement as a combo action.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7526,"IconHD":"/i/003000/003224_hr1.png","Name":"Verholy","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":58,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 220.\n\nBalance Gauge Cost: 30 Black Mana\n\nBalance Gauge Cost: 30 White Mana\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7527,"IconHD":"/i/003000/003225_hr1.png","Name":"Enchanted Riposte","PreservesCombo":0,"PrimaryCostType":43,"PrimaryCostValue":30,"Range":"-1","Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7504,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 100.\n\nCombo Action: Riposte or Enchanted Riposte\n\nCombo Potency: 290\n\nBalance Gauge Cost: 25 Black Mana\n\nBalance Gauge Cost: 25 White Mana\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7528,"IconHD":"/i/003000/003226_hr1.png","Name":"Enchanted Zwerchhau","PreservesCombo":0,"PrimaryCostType":43,"PrimaryCostValue":25,"Range":"-1","Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7512,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 100.\n\nCombo Action: Enchanted Zwerchhau\n\nCombo Potency: 470\n\nBalance Gauge Cost: 25 Black Mana\n\nBalance Gauge Cost: 25 White Mana\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7529,"IconHD":"/i/003000/003227_hr1.png","Name":"Enchanted Redoublement","PreservesCombo":0,"PrimaryCostType":43,"PrimaryCostValue":25,"Range":"-1","Recast100ms":22,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":52,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 200 to all enemies in a cone before you.\n\nBalance Gauge Cost: 20 Black Mana\n\nBalance Gauge Cost: 20 White Mana\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":8,"ID":7530,"IconHD":"/i/003000/003228_hr1.png","Name":"Enchanted Moulinet","PreservesCombo":0,"PrimaryCostType":43,"PrimaryCostValue":20,"Range":8,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":18,"CooldownGroup":58,"Description":"Deals lightning damage with a potency of 120 to target and all enemies nearby it.\n\nAdditional Effect: Increases Black Mana by 7","DescriptionJSON":null,"EffectRange":5,"ID":16524,"IconHD":"/i/003000/003229_hr1.png","Name":"Verthunder II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":22,"CooldownGroup":58,"Description":"Deals wind damage with a potency of 120 to target and all enemies nearby it.\n\nAdditional Effect: Increases White Mana by 7","DescriptionJSON":null,"EffectRange":5,"ID":16525,"IconHD":"/i/003000/003230_hr1.png","Name":"Veraero II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":50,"CastType":2,"ClassJobLevel":66,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 220 to target and all enemies nearby it.\n\nAdditional Effect: Increases both Black Mana and White Mana by 3","DescriptionJSON":null,"EffectRange":5,"ID":16526,"IconHD":"/i/003000/003222_hr1.png","Name":"Impact","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":72,"CooldownGroup":10,"Description":"Delivers an attack with a potency of 150.\n\nShares a recast timer with Displacement.","DescriptionJSON":null,"EffectRange":0,"ID":16527,"IconHD":"/i/003000/003231_hr1.png","Name":"Engagement","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":350,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 300.\n\nBalance Gauge Cost: 5 Black Mana\n\nBalance Gauge Cost: 5 White Mana\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16528,"IconHD":"/i/003000/003232_hr1.png","Name":"Enchanted Reprise","PreservesCombo":0,"PrimaryCostType":43,"PrimaryCostValue":5,"Range":25,"Recast100ms":22,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nAction upgraded to Enchanted Reprise if both Black Mana and White Mana are at 5 or more.","DescriptionJSON":null,"EffectRange":0,"ID":16529,"IconHD":"/i/003000/003233_hr1.png","Name":"Reprise","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":75,"SecondaryCostValue":5,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":7525,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 700.\n\nCombo Action: Verflare or Verholy\n\nAdditional Effect: Increases both Black Mana and White Mana by 7\n\nJolt II is changed to Scorch upon landing Verflare or Verholy as a combo action.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16530,"IconHD":"/i/003000/003234_hr1.png","Name":"Scorch","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":58,"SecondaryCostValue":0,"TargetArea":0}],"36":[{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals a 20-yalm knockback to all enemies in a cone before you.","DescriptionJSON":null,"EffectRange":6,"ID":11383,"IconHD":"/i/003000/003251_hr1.png","Name":"Snort","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Drops a 4-tonze weight dealing physical damage at a designated location with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Heavy +40%\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":4,"ID":11384,"IconHD":"/i/003000/003252_hr1.png","Name":"4-tonze Weight","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals water damage with a potency of 200.","DescriptionJSON":null,"EffectRange":0,"ID":11385,"IconHD":"/i/003000/003253_hr1.png","Name":"Water Cannon","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":1,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 50.\n\nAdditional Effect: Unaspected damage over time\n\nPotency: 50\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":11386,"IconHD":"/i/003000/003254_hr1.png","Name":"Song of Torment","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals lightning damage to all nearby enemies with a potency of 180 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Paralysis\n\nDuration: 15s\n\nAdditional Effect: Potency increased to 220 when target is afflicted with Dropsy\n\nAdditional Effect: Duration of Paralysis is increased to 30 seconds when target is afflicted with Dropsy","DescriptionJSON":null,"EffectRange":12,"ID":11387,"IconHD":"/i/003000/003255_hr1.png","Name":"High Voltage","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Blow noxious breath on all enemies in a cone before you, inflicting Slow +20%, Heavy +40%, Blind, and Paralysis.\n\nAdditional Effect: Poison\n\nPotency: 20\n\nAdditional Effect: Damage dealt reduced 10%\n\nDuration: 15s\n\nAdditional Effect: Interrupts target","DescriptionJSON":null,"EffectRange":8,"ID":11388,"IconHD":"/i/003000/003256_hr1.png","Name":"Bad Breath","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":10,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers a jumping physical attack to target and all enemies nearby it with a potency of 150 for the first enemy, and 50% less for all remaining enemies.\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":6,"ID":11389,"IconHD":"/i/003000/003257_hr1.png","Name":"Flying Frenzy","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals water damage to all enemies in a cone before you with a potency of 140 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Inflicts Dropsy, dealing water damage over time\n\nPotency: 20\n\nDuration: 12s","DescriptionJSON":null,"EffectRange":8,"ID":11390,"IconHD":"/i/003000/003258_hr1.png","Name":"Aqua Breath","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals earth damage to all nearby enemies with a potency of 220 for the first enemy, and 50% less for all remaining enemies.","DescriptionJSON":null,"EffectRange":6,"ID":11391,"IconHD":"/i/003000/003259_hr1.png","Name":"Plaincracker","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Puts target and all enemies nearby it to sleep.\n\nDuration: 30s\n\nCancels auto-attack upon execution.","DescriptionJSON":null,"EffectRange":6,"ID":11392,"IconHD":"/i/003000/003260_hr1.png","Name":"Acorn Bomb","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Increases the potency of the next spell cast by 50%.\n\nDuration: 30s\n\nEffect cannot be stacked with Harmonized.","DescriptionJSON":null,"EffectRange":0,"ID":11393,"IconHD":"/i/003000/003261_hr1.png","Name":"Bristle","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage to all nearby enemies with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Paralysis\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":6,"ID":11394,"IconHD":"/i/003000/003262_hr1.png","Name":"Mind Blast","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 50.\n\nAdditional Effect: Restores MP","DescriptionJSON":null,"EffectRange":0,"ID":11395,"IconHD":"/i/003000/003263_hr1.png","Name":"Blood Drain","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":1,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals fire damage at a designated location with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Stun\n\nDuration: 3s","DescriptionJSON":null,"EffectRange":6,"ID":11396,"IconHD":"/i/003000/003264_hr1.png","Name":"Bomb Toss","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":60,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals a fixed 1,000 points of physical damage which is shared by all enemies around you.","DescriptionJSON":null,"EffectRange":4,"ID":11397,"IconHD":"/i/003000/003265_hr1.png","Name":"1000 Needles","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":4,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals physical damage to all enemies in a straight line before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Potency is increased to 600 when target is afflicted with Petrification. The Petrification effect is also removed.","DescriptionJSON":null,"EffectRange":20,"ID":11398,"IconHD":"/i/003000/003266_hr1.png","Name":"Drill Cannons","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Increased enmity","DescriptionJSON":null,"EffectRange":6,"ID":11399,"IconHD":"/i/003000/003267_hr1.png","Name":"the Look","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals physical damage with a potency of 220.\n\nAdditional Effect: Potency is increased to 450 when target is stunned","DescriptionJSON":null,"EffectRange":0,"ID":11400,"IconHD":"/i/003000/003268_hr1.png","Name":"Sharpened Knife","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":3,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":10,"CastType":7,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Move quickly to the specified location.\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":1,"ID":11401,"IconHD":"/i/003000/003269_hr1.png","Name":"Loom","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":15,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals fire damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.","DescriptionJSON":null,"EffectRange":8,"ID":11402,"IconHD":"/i/003000/003270_hr1.png","Name":"Flame Thrower","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Stuns all enemies in a cone before you.\n\nDuration: 6s","DescriptionJSON":null,"EffectRange":4,"ID":11403,"IconHD":"/i/003000/003271_hr1.png","Name":"Faze","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":4,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals lightning damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Paralysis\n\nDuration: 6s","DescriptionJSON":null,"EffectRange":15,"ID":11404,"IconHD":"/i/003000/003272_hr1.png","Name":"Glower","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":15,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals damage equal to 50% of target's current HP.\n\nChance of successful attack is low. Has no effect on enemies whose level is higher than your own.","DescriptionJSON":null,"EffectRange":0,"ID":11405,"IconHD":"/i/003000/003273_hr1.png","Name":"Missile","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Restores own HP and the HP of all nearby party members by an amount equal to your current HP.","DescriptionJSON":null,"EffectRange":15,"ID":11406,"IconHD":"/i/003000/003274_hr1.png","Name":"White Wind","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":15,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals physical damage with a potency of 2,000 while incapacitating self.\n\nAdditional Effect: Inflicts Brush with Death on self\n\nDuration: 600s\n\nEffect will not be removed upon revival or further incapacitation.\n\nCannot be executed while under the effect of Brush with Death.","DescriptionJSON":null,"EffectRange":0,"ID":11407,"IconHD":"/i/003000/003275_hr1.png","Name":"Final Sting","PreservesCombo":0,"PrimaryCostType":2,"PrimaryCostValue":0,"Range":3,"Recast100ms":25,"SecondaryCostType":46,"SecondaryCostValue":2127,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 1,500 to all nearby enemies while incapacitating self.\n\nAdditional Effect: Potency is increased to 1,800 when you are under the effect of Toad Oil\n\nAdditional Effect: Inflicts Brush with Death on self\n\nDuration: 600s\n\nEffect will not be removed upon revival or further incapacitation.\n\nCannot be executed while under the effect of Brush with Death.","DescriptionJSON":null,"EffectRange":20,"ID":11408,"IconHD":"/i/003000/003276_hr1.png","Name":"Self-destruct","PreservesCombo":0,"PrimaryCostType":2,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":46,"SecondaryCostValue":2127,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Restores all HP and MP of a single party member while incapacitating self.\n\nAdditional Effect: Inflicts Brush with Death on self\n\nDuration: 600s\n\nEffect will not be removed upon revival or further incapacitation.\n\nCannot be executed while under the effect of Brush with Death.","DescriptionJSON":null,"EffectRange":0,"ID":11409,"IconHD":"/i/003000/003277_hr1.png","Name":"Transfusion","PreservesCombo":0,"PrimaryCostType":2,"PrimaryCostValue":0,"Range":25,"Recast100ms":25,"SecondaryCostType":46,"SecondaryCostValue":2127,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Increases evasion by 20%.\n\nDuration: 180s","DescriptionJSON":null,"EffectRange":0,"ID":11410,"IconHD":"/i/003000/003278_hr1.png","Name":"Toad Oil","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":1,"ClassJobLevel":1,"CooldownGroup":4,"Description":"Increases target's damage taken by 5%.\n\nDuration: 15s\n\nRecast timer cannot be affected by other spells. However, this action shares a recast timer with Peculiar Light.","DescriptionJSON":null,"EffectRange":0,"ID":11411,"IconHD":"/i/003000/003279_hr1.png","Name":"Off-guard","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":1,"Range":25,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Draws target towards caster.\n\nAdditional Effect: Stun\n\nDuration: 4s\n\nAdditional Effect: Increased enmity","DescriptionJSON":null,"EffectRange":0,"ID":11412,"IconHD":"/i/003000/003280_hr1.png","Name":"Sticky Tongue","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Reduces target's HP to a single digit.\n\nChance of successful attack is low. Has no effect on enemies whose level is higher than your own.","DescriptionJSON":null,"EffectRange":0,"ID":11413,"IconHD":"/i/003000/003281_hr1.png","Name":"Tail Screw","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Petrifies all enemies in a cone before you.\n\nDuration: 20s\n\nChance of successful attack is low.\n\nEnemy level must be a multiple of 5. Has no effect on enemies whose level is higher than your own.","DescriptionJSON":null,"EffectRange":6,"ID":11414,"IconHD":"/i/003000/003282_hr1.png","Name":"Level 5 Petrify","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Grants the effect of Waxing Nocturne, increasing damage dealt by 50% and movement speed by 30%.\n\nDuration: 15s\n\nWhen effect ends, the player is afflicted with Waning Nocturne, preventing the use of auto-attack, weaponskills, spells, or abilities.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":11415,"IconHD":"/i/003000/003283_hr1.png","Name":"Moon Flute","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Inflicts Doom on target.\n\nDuration: 15s\n\nWhen effect expires, the target will be KO'd.\n\nChance of successful attack is low. Has no effect on enemies whose level is higher than your own.","DescriptionJSON":null,"EffectRange":0,"ID":11416,"IconHD":"/i/003000/003284_hr1.png","Name":"Doom","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Reduces damage taken by 40% while reducing damage dealt by 40%, increasing enmity generation, and preventing casting interruptions via damage taken.\n\nEffect ends upon reuse.","DescriptionJSON":null,"EffectRange":0,"ID":11417,"IconHD":"/i/003000/003285_hr1.png","Name":"Mighty Guard","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":7,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Counters enemies with ice damage every time you suffer physical damage.\n\nCounter Potency: 40\n\nDuration: 15s\n\nAdditional Effect: 50% chance that when you are struck, the striker will be afflicted with Slow +20%\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":11418,"IconHD":"/i/003000/003286_hr1.png","Name":"Ice Spikes","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals ice damage to all nearby enemies with a potency of 220 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Deep Freeze\n\nDuration: 12s","DescriptionJSON":null,"EffectRange":6,"ID":11419,"IconHD":"/i/003000/003287_hr1.png","Name":"the Ram's Voice","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":10,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals lightning damage to all nearby enemies with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nEnemies within an 8-yalm radius will be unaffected.\n\nAdditional Effect: Paralysis\n\nDuration: 9s\n\nAdditional Effect: Potency is increased to 400 against most enemies afflicted with Deep Freeze. The Deep Freeze effect is also removed.","DescriptionJSON":null,"EffectRange":20,"ID":11420,"IconHD":"/i/003000/003288_hr1.png","Name":"the Dragon's Voice","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":2,"ClassJobLevel":1,"CooldownGroup":4,"Description":"Increases magic damage taken by all nearby enemies by 5%.\n\nDuration: 15s\n\nRecast timer cannot be affected by other spells. However, this action shares a recast timer with Off-guard.","DescriptionJSON":null,"EffectRange":6,"ID":11421,"IconHD":"/i/003000/003289_hr1.png","Name":"Peculiar Light","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage to all enemies in a cone before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Blind\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":6,"ID":11422,"IconHD":"/i/003000/003290_hr1.png","Name":"Ink Jet","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals physical damage with a potency of 10.\n\nAdditional Effect: Interrupts target","DescriptionJSON":null,"EffectRange":0,"ID":11423,"IconHD":"/i/003000/003291_hr1.png","Name":"Flying Sardine","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Reduces damage taken by 90% and nullifies most knockback and draw-in effects.\n\nUnable to move or take action for the duration of this effect.\n\nDuration: 10s\n\nIf used when Waxing Nocturne is active, its effect will transition immediately to Waning Nocturne.\n\nThe effect of this action cannot be ended manually.","DescriptionJSON":null,"EffectRange":0,"ID":11424,"IconHD":"/i/003000/003292_hr1.png","Name":"Diamondback","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":30,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals physical fire damage to target and all enemies nearby it with a potency of 200 for the first enemy, and 50% less for all remaining enemies.","DescriptionJSON":null,"EffectRange":4,"ID":11425,"IconHD":"/i/003000/003293_hr1.png","Name":"Fire Angon","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":1,"CooldownGroup":1,"Description":"Deals wind damage with a potency of 220 to all enemies at a designated location.\n\nAdditional Effect: Wind damage over time\n\nPotency: 40\n\nDuration: 6s\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":5,"ID":11426,"IconHD":"/i/003000/003294_hr1.png","Name":"Feather Rain","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":30,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":1,"CooldownGroup":1,"Description":"Deals fire damage with a potency of 300 to all enemies at a designated location.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":5,"ID":11427,"IconHD":"/i/003000/003295_hr1.png","Name":"Eruption","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":1,"CooldownGroup":2,"Description":"Deals physical earth damage to all enemies in a cone before you with a potency of 400 for the first enemy, and 50% less for all remaining enemies.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":6,"ID":11428,"IconHD":"/i/003000/003296_hr1.png","Name":"Mountain Buster","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":1,"CooldownGroup":2,"Description":"Deals lightning damage to target and all enemies nearby it with a potency of 400 for the first enemy, and 50% less for all remaining enemies.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":3,"ID":11429,"IconHD":"/i/003000/003297_hr1.png","Name":"Shock Strike","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":1,"CooldownGroup":3,"Description":"Deals ice damage to all enemies in a wide arc to your fore and flanks with a potency of 350 for the first enemy, and 50% less for all remaining enemies.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":12,"ID":11430,"IconHD":"/i/003000/003298_hr1.png","Name":"Glass Dance","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":3,"Description":"Counters enemies with water damage every time you suffer damage.\n\nCounter Potency: 50\n\nDuration: 30s\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":0,"ID":11431,"IconHD":"/i/003000/003299_hr1.png","Name":"Veil of the Whorl","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":4,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals wind damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.","DescriptionJSON":null,"EffectRange":20,"ID":18295,"IconHD":"/i/003000/003300_hr1.png","Name":"Alpine Draft","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals water damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: 15-yalm knockback","DescriptionJSON":null,"EffectRange":15,"ID":18296,"IconHD":"/i/003000/003301_hr1.png","Name":"Protean Wave","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals ice damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Enemies affected by Dropsy are frozen. The Dropsy effect is also removed.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":6,"ID":18297,"IconHD":"/i/003000/003302_hr1.png","Name":"Northerlies","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals lightning damage to target and all enemies nearby it with a potency of 220 for the first enemy, and 50% less for all remaining enemies.","DescriptionJSON":null,"EffectRange":6,"ID":18298,"IconHD":"/i/003000/003303_hr1.png","Name":"Electrogenesis","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals physical damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.","DescriptionJSON":null,"EffectRange":6,"ID":18299,"IconHD":"/i/003000/003304_hr1.png","Name":"Kaltstrahl","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals physical damage with a potency of 220.\n\nAdditional Effect: Paralysis\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":18300,"IconHD":"/i/003000/003305_hr1.png","Name":"Abyssal Transfixion","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Puts all nearby enemies to sleep.\n\nDuration: 40s\n\nCancels auto-attack upon execution.","DescriptionJSON":null,"EffectRange":3,"ID":18301,"IconHD":"/i/003000/003306_hr1.png","Name":"Chirp","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Removes one beneficial effect from all nearby enemies.","DescriptionJSON":null,"EffectRange":6,"ID":18302,"IconHD":"/i/003000/003307_hr1.png","Name":"Eerie Soundwave","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 100\n\nCure potency is increased to 500 when you are under the effect of Aetherial Mimicry: Healer.","DescriptionJSON":null,"EffectRange":0,"ID":18303,"IconHD":"/i/003000/003308_hr1.png","Name":"Pom Cure","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Creates a barrier around self and all nearby party members that absorbs damage equivalent to a heal of 100 potency.\n\nDuration: 30s\n\nBarrier strength is increased to absorb damage equivalent to a heal of 250 potency when you are under the effect of Aetherial Mimicry: Healer.\n\nEffect cannot be stacked with scholar's Galvanize or astrologian's Nocturnal Field.","DescriptionJSON":null,"EffectRange":20,"ID":18304,"IconHD":"/i/003000/003309_hr1.png","Name":"Gobskin","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":2,"ClassJobLevel":1,"CooldownGroup":8,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 250 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Lowers intelligence and mind attributes by 10%\n\nDuration: 10s\n\nAdditional Effect: Restores 10% of maximum MP\n\nThis action does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":8,"ID":18305,"IconHD":"/i/003000/003310_hr1.png","Name":"Magic Hammer","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":1,"ClassJobLevel":1,"CooldownGroup":9,"Description":"Direct damage intended for you to another party member.\n\nDuration: 12s\n\nCan only be executed when member is within 10 yalms. Does not activate with certain attacks.\n\nThis action does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":0,"ID":18306,"IconHD":"/i/003000/003311_hr1.png","Name":"Avail","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":10,"Range":10,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Provoke nearby enemies, placing yourself at the top of their enmity list.","DescriptionJSON":null,"EffectRange":4,"ID":18307,"IconHD":"/i/003000/003312_hr1.png","Name":"Frog Legs","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals wind damage with a potency of 210.","DescriptionJSON":null,"EffectRange":0,"ID":18308,"IconHD":"/i/003000/003313_hr1.png","Name":"Sonic Boom","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Increases the potency of the next physical damage spell cast by 80%.\n\nDuration: 30s\n\nEffect cannot be stacked with Boost.","DescriptionJSON":null,"EffectRange":0,"ID":18309,"IconHD":"/i/003000/003314_hr1.png","Name":"Whistle","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":4,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage to all enemies in a straight line before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Potency is increased to 400 when enemies are bound. The Bind effect is also removed.\n\nAdditional Effect: Slow +20%\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":20,"ID":18310,"IconHD":"/i/003000/003315_hr1.png","Name":"White Knight's Tour","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":4,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage to all enemies in a straight line before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Potency is increased to 400 when enemies are under the effect of Slow. The Slow effect is also removed.\n\nAdditional Effect: Bind\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":20,"ID":18311,"IconHD":"/i/003000/003316_hr1.png","Name":"Black Knight's Tour","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":11,"Description":"KOs all nearby enemies.\n\nChance of successful attack is low.\n\nEnemy level must be a multiple of 5. Has no effect on enemies whose level is higher than your own.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":6,"ID":18312,"IconHD":"/i/003000/003317_hr1.png","Name":"Level 5 Death","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":15,"Range":0,"Recast100ms":1800,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies randomly dealing 50%, 30%, 20%, or 10% of their HP.\n\nHas no effect on enemies whose level is higher than your own.","DescriptionJSON":null,"EffectRange":15,"ID":18313,"IconHD":"/i/003000/003318_hr1.png","Name":"Launcher","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":25,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":30,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 220.\n\nAdditional Effect: Stun\n\nDuration: 1s\n\nIgnores target's Stun resistance.","DescriptionJSON":null,"EffectRange":0,"ID":18314,"IconHD":"/i/003000/003319_hr1.png","Name":"Perpetual Ray","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Reduces target party member's damage taken by 5%.\n\nDuration: 6s\n\nIncreases damage reduction to 15% when you are under the effect of Aetherial Mimicry: Tank.","DescriptionJSON":null,"EffectRange":0,"ID":18315,"IconHD":"/i/003000/003320_hr1.png","Name":"Cactguard","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals physical damage with a potency of 50.\n\nPotency is increased to 500 when your HP is below 20%.","DescriptionJSON":null,"EffectRange":0,"ID":18316,"IconHD":"/i/003000/003321_hr1.png","Name":"Revenge Blast","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":3,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":100,"CastType":1,"ClassJobLevel":1,"CooldownGroup":13,"Description":"Resurrects target to a weakened state.\n\nThis action does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":0,"ID":18317,"IconHD":"/i/003000/003322_hr1.png","Name":"Angel Whisper","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":10,"Range":25,"Recast100ms":3000,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 50\n\nAdditional Effect: Removes one detrimental effect from all nearby party members\n\nCure potency is increased to 300 when you are under the effect of Aetherial Mimicry: Healer.","DescriptionJSON":null,"EffectRange":6,"ID":18318,"IconHD":"/i/003000/003323_hr1.png","Name":"Exuviation","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals lightning damage with a potency of 220.\n\nAdditional Effect: Heavy +40%\n\nDuration: 10s\n\nIgnores target's Heavy resistance.","DescriptionJSON":null,"EffectRange":0,"ID":18319,"IconHD":"/i/003000/003324_hr1.png","Name":"Reflux","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":1,"ClassJobLevel":1,"CooldownGroup":12,"Description":"Deals unaspected damage with a potency of 250.\n\nAdditional Effect: Increases maximum HP by 20%\n\nDuration: 15s\n\nIncreases duration to 70s when you are under the effect of Aetherial Mimicry: Tank.\n\nAdditional Effect: Restores an amount of own HP equal to damage dealt\n\nThis action does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":0,"ID":18320,"IconHD":"/i/003000/003325_hr1.png","Name":"Devour","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":3,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Afflicts target with Physical Attenuation, Astral Attenuation, or Umbral Attenuation.\n\nDuration: 30s\n\nPhysical Attenuation Effect: Increases damage taken from physical attacks by 5%\n\nAstral Attenuation Effect: Increases damage taken from fire-, wind-, and lightning-aspected attacks by 5%\n\nUmbral Attenuation Effect: Increases damage taken from water-, earth-, and ice-aspected attacks by 5%\n\nOnly one of these statuses can be applied to a target at a time.","DescriptionJSON":null,"EffectRange":0,"ID":18321,"IconHD":"/i/003000/003326_hr1.png","Name":"Condensed Libra","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Mirror the aetherial properties of your target, granting yourself a beneficial effect corresponding with the target's role.\n\nIf target is a tank, grants Aetherial Mimicry: Tank, increasing your defense and augmenting certain blue magic spells.\n\nIf target is a DPS, grants Aetherial Mimicry: DPS, increasing critical hit rate and direct hit rate by 20%.\n\nIf target is a healer, grants Aetherial Mimicry: Healer, increasing healing magic potency by 20% and augmenting certain blue magic spells.\n\nCannot be cast on self. Effect ends upon reuse.","DescriptionJSON":null,"EffectRange":0,"ID":18322,"IconHD":"/i/003000/003327_hr1.png","Name":"Aetherial Mimicry","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":1,"CooldownGroup":6,"Description":"Deals earth damage to all enemies in a cone before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Grants Surpanakha's Fury, increasing potency of Surpanakha by 50%\n\nDuration: 3s\n\nCan be stacked up to 3 times.\n\nMaximum Charges: 4\n\nEffect is canceled upon execution of any action other than Surpanakha.","DescriptionJSON":null,"EffectRange":16,"ID":18323,"IconHD":"/i/003000/003328_hr1.png","Name":"Surpanakha","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":1,"CooldownGroup":7,"Description":"Deals unaspected damage to all nearby enemies with a potency of 300 for the first enemy, and 50% less for all remaining enemies.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":15,"ID":18324,"IconHD":"/i/003000/003329_hr1.png","Name":"Quasar","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":2,"ClassJobLevel":1,"CooldownGroup":7,"Description":"Delivers a jumping physical attack to target and all enemies nearby it with a potency of 300 for the first enemy, and 50% less for all remaining enemies.\n\nCannot be executed while bound.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":6,"ID":18325,"IconHD":"/i/003000/003330_hr1.png","Name":"J Kick","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":5,"Description":"Delivers a threefold attack, each hit with a potency of 150.\n\nThis action does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":0,"ID":23264,"IconHD":"/i/003000/003331_hr1.png","Name":"Triple Trident","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":3,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals lightning damage to target and all enemies nearby it with a potency of 100 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Increases the potency of the next physical damage spell cast by 100\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":6,"ID":23265,"IconHD":"/i/003000/003332_hr1.png","Name":"Tingle","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":4,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Stun\n\nDuration: 3s","DescriptionJSON":null,"EffectRange":20,"ID":23266,"IconHD":"/i/003000/003333_hr1.png","Name":"Tatami-gaeshi","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":14,"Description":"Grants Cold Fog to self.\n\nDuration: 5s\n\nEffect changes to Touch of Frost if damage is taken.\n\nTouch of Frost Effect: Action changes from Cold Fog to White Death\n\nDuration: 15s\n\n\n\nWhite Death\n\nDeals ice damage with a potency of 400.\n\nAdditional Effect: Deep Freeze\n\nDuration: 10s\n\nCan only be executed while under the effect of Touch of Frost.","DescriptionJSON":null,"EffectRange":0,"ID":23267,"IconHD":"/i/003000/003334_hr1.png","Name":"Cold Fog","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 140 to all nearby enemies.\n\nAction effect changes, restoring own HP and the HP of all nearby party members when you are under the effect of Aetherial Mimicry: Healer.\n\nCure Potency: 300","DescriptionJSON":null,"EffectRange":15,"ID":23269,"IconHD":"/i/003000/003336_hr1.png","Name":"Stotram","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 100 to target and all enemies nearby it.\n\nPotency increases to 500 when used against undead enemies.","DescriptionJSON":null,"EffectRange":6,"ID":23270,"IconHD":"/i/003000/003337_hr1.png","Name":"Saintly Beam","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":4,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals earth damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.","DescriptionJSON":null,"EffectRange":20,"ID":23271,"IconHD":"/i/003000/003338_hr1.png","Name":"Feculent Flood","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":16,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 400\n\nAdditional Effect: Grants healing over time effect when you are under the effect of Aetherial Mimicry: Healer\n\nCure Potency: 200\n\nDuration: 15s\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":20,"ID":23272,"IconHD":"/i/003000/003339_hr1.png","Name":"Angel's Snack","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":17,"Description":"Summons a chelonian gate, reducing damage taken by 20%.\n\nDuration: 10s\n\nAdditional Effect: Grants Auspicious Trance after taking damage equal to 30% of maximum HP\n\nAuspicious Trance Effect: Action changes from Chelonian Gate to Divine Cataract\n\nChelonian Gate effect ends upon using another action or moving (including facing a different direction).\n\nAuspicious Trance ends upon losing the effect of Chelonian Gate.\n\nShares a recast timer with certain blue magic spells.\n\n\n\nDivine Cataract\n\nDeals water damage to all nearby enemies with a potency of 500 for the first enemy, and 50% less for all remaining enemies.\n\nPotency increases to 1,000 when you are under the effect of Aetherial Mimicry: Tank.\n\nCan only be executed when under the effect of Auspicious Trance.","DescriptionJSON":null,"EffectRange":0,"ID":23273,"IconHD":"/i/003000/003340_hr1.png","Name":"Chelonian Gate","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":17,"Description":"Deals unaspected damage with a potency of 400.\n\nAdditional Effect: 10-yalm knockback\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":0,"ID":23275,"IconHD":"/i/003000/003342_hr1.png","Name":"The Rose of Destruction","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Increases movement speed by 30%, and healing magic potency and damage dealt by 100%. Also ignores the damage penalty inflicted by Mighty Guard.\n\nCan only be used in duties intended for two or more players while playing alone, while no other party members are in the instance, or when all party members are incapacitated. Effect ends when joined by one or more party members.","DescriptionJSON":null,"EffectRange":0,"ID":23276,"IconHD":"/i/003000/003343_hr1.png","Name":"Basic Instinct","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":11,"Description":"KOs all nearby enemies afflicted with Deep Freeze or Petrification. Has no effect on enemies whose level is higher than your own, and certain others.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":6,"ID":23277,"IconHD":"/i/003000/003344_hr1.png","Name":"Ultravibration","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals ice damage to target and all enemies nearby it with a potency of 220 for the first enemy, and 50% less for all remaining enemies.","DescriptionJSON":null,"EffectRange":6,"ID":23278,"IconHD":"/i/003000/003345_hr1.png","Name":"Blaze","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals fire damage to target and all enemies nearby it with a potency of 220 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Enemies affected by Lightheaded suffer damage over time\n\nPotency: 50\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":6,"ID":23279,"IconHD":"/i/003000/003346_hr1.png","Name":"Mustard Bomb","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":16,"Description":"Reduces damage taken by 20%.\n\nDuration: 15s\n\nIncreases damage reduction to 40% when you are under the effect of Aetherial Mimicry: Tank.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":0,"ID":23280,"IconHD":"/i/003000/003347_hr1.png","Name":"Dragon Force","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":4,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 50 to all enemies in a straight line before you.\n\nAdditional Effect: Unaspected damage over time\n\nPotency: 50\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":20,"ID":23281,"IconHD":"/i/003000/003348_hr1.png","Name":"Aetherial Spark","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals water damage to all nearby enemies with a potency of 220 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Draw-in","DescriptionJSON":null,"EffectRange":15,"ID":23282,"IconHD":"/i/003000/003349_hr1.png","Name":"Hydro Pull","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":4,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals water damage to all enemies in a straight line before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: 10-yalm knockback to all enemies and party members in range\n\nCannot be used outside of combat or when target is suffering from certain enfeeblements.","DescriptionJSON":null,"EffectRange":15,"ID":23283,"IconHD":"/i/003000/003350_hr1.png","Name":"Malediction of Water","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nPotency increases to 300 when partied with your personal chocobo.","DescriptionJSON":null,"EffectRange":8,"ID":23284,"IconHD":"/i/003000/003351_hr1.png","Name":"Choco Meteor","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":16,"Description":"Deals an unaspected eightfold attack, each hit with a potency of 50.\n\nPotency is increased to 100 when you are under the effect of Aetherial Mimicry: DPS.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":0,"ID":23285,"IconHD":"/i/003000/003352_hr1.png","Name":"Matra Magic","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"37":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 200.","DescriptionJSON":null,"EffectRange":0,"ID":16137,"IconHD":"/i/003000/003401_hr1.png","Name":"Keen Edge","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":2,"CooldownGroup":12,"Description":"Increases damage dealt by 20%.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":16138,"IconHD":"/i/003000/003402_hr1.png","Name":"No Mercy","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":16137,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Keen Edge\n\nCombo Potency: 300\n\nCombo Bonus: Restores own HP\n\nCure Potency: 200
\nCombo Bonus: Creates a barrier which nullifies damage equaling HP restored
\n
\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":16139,"IconHD":"/i/003000/003403_hr1.png","Name":"Brutal Shell","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":6,"CooldownGroup":16,"Description":"Increases parry rate by 50% while reducing damage taken by 10%.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":16140,"IconHD":"/i/003000/003404_hr1.png","Name":"Camouflage","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":10,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 150 to all nearby enemies.","DescriptionJSON":null,"EffectRange":5,"ID":16141,"IconHD":"/i/003000/003405_hr1.png","Name":"Demon Slice","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":10,"CooldownGroup":5,"Description":"Significantly increases enmity generation.\n\nEffect ends upon reuse.","DescriptionJSON":null,"EffectRange":0,"ID":16142,"IconHD":"/i/003000/003406_hr1.png","Name":"Royal Guard","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":100,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Delivers a ranged attack with a potency of 150.\n\nAdditional Effect: Increased enmity","DescriptionJSON":null,"EffectRange":0,"ID":16143,"IconHD":"/i/003000/003407_hr1.png","Name":"Lightning Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":18,"CooldownGroup":7,"Description":"Delivers an attack with a potency of 350.","DescriptionJSON":null,"EffectRange":0,"ID":16144,"IconHD":"/i/003000/003408_hr1.png","Name":"Danger Zone","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":300,"SecondaryCostType":63,"SecondaryCostValue":259,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":16139,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Brutal Shell\n\nCombo Potency: 400
\nCombo Bonus: Adds a Cartridge to your Powder Gauge","DescriptionJSON":null,"EffectRange":0,"ID":16145,"IconHD":"/i/003000/003409_hr1.png","Name":"Solid Barrel","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":8,"Description":"Delivers an attack with a potency of 450. Additional Effect: Grants Ready to Rip
\n
\nDuration: 10s
\n
\n Cartridge Cost: 1\n\nThis weaponskill does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":0,"ID":16146,"IconHD":"/i/003000/003410_hr1.png","Name":"Gnashing Fang","PreservesCombo":1,"PrimaryCostType":55,"PrimaryCostValue":1,"Range":"-1","Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":16146,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 550.\n\nCombo Action: Gnashing Fang
\nCombo Bonus: Grants Ready to Tear
\n
\nDuration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":16147,"IconHD":"/i/003000/003411_hr1.png","Name":"Savage Claw","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":15,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":38,"CooldownGroup":22,"Description":"Reduces damage taken by 30%.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":16148,"IconHD":"/i/003000/003412_hr1.png","Name":"Nebula","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":16141,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby enemies.\n\nCombo Action: Demon Slice\n\nCombo Potency: 250\n\nCombo Bonus: Adds a Cartridge to your Powder Gauge","DescriptionJSON":null,"EffectRange":5,"ID":16149,"IconHD":"/i/003000/003413_hr1.png","Name":"Demon Slaughter","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":16147,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 650.\n\nCombo Action: Savage Claw
\nCombo Bonus: Grants Ready to Gouge
\n
\nDuration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":16150,"IconHD":"/i/003000/003414_hr1.png","Name":"Wicked Talon","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":15,"SecondaryCostValue":2,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":13,"Description":"Grants Regen to target.\n\nCure Potency: 200\n\nDuration: 18s","DescriptionJSON":null,"EffectRange":0,"ID":16151,"IconHD":"/i/003000/003415_hr1.png","Name":"Aurora","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":25,"Description":"Reduces HP to 1 and renders you impervious to most attacks.\n\nDuration: 8s","DescriptionJSON":null,"EffectRange":0,"ID":16152,"IconHD":"/i/003000/003416_hr1.png","Name":"Superbolide","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":3600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":14,"Description":"Delivers an attack with a potency of 300.\n\nAdditional Effect: Damage over time\n\nPotency: 90\n\nDuration: 30s\n\nThis weaponskill does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":0,"ID":16153,"IconHD":"/i/003000/003417_hr1.png","Name":"Sonic Break","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":56,"CooldownGroup":9,"Description":"Delivers a jumping attack with a potency of 200.\n\nMaximum Charges: 2\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":16154,"IconHD":"/i/003000/003418_hr1.png","Name":"Rough Divide","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":1,"Description":"Allows the firing of successive rounds with your gunblade.\n\nGnashing Fang may be followed by Jugular Rip.\n\nSavage Claw may be followed by Abdomen Tear.\n\nWicked Talon may be followed by Eye Gouge.","DescriptionJSON":null,"EffectRange":0,"ID":16155,"IconHD":"/i/003000/003419_hr1.png","Name":"Continuation","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":10,"SecondaryCostType":73,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 260.\n\nCan only be executed when Ready to Rip.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16156,"IconHD":"/i/003000/003420_hr1.png","Name":"Jugular Rip","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":1842,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 280.\n\nCan only be executed when Ready to Tear.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16157,"IconHD":"/i/003000/003421_hr1.png","Name":"Abdomen Tear","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":1843,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 300.\n\nCan only be executed when Ready to Gouge.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16158,"IconHD":"/i/003000/003422_hr1.png","Name":"Eye Gouge","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":1844,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":62,"CooldownGroup":15,"Description":"Delivers an attack with a potency of 200 to all nearby enemies.\n\nAdditional Effect: Damage over time\n\nPotency: 90\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":5,"ID":16159,"IconHD":"/i/003000/003423_hr1.png","Name":"Bow Shock","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":64,"CooldownGroup":17,"Description":"Reduces magic damage taken by self and nearby party members by 10%.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":15,"ID":16160,"IconHD":"/i/003000/003424_hr1.png","Name":"Heart of Light","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":6,"Description":"Reduces damage taken by a party member or self by 15%.\n\nDuration: 7s\n\nAdditional Effect: When targeting a party member while under the effect of Brutal Shell, that effect is also granted to the target\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":16161,"IconHD":"/i/003000/003425_hr1.png","Name":"Heart of Stone","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":250,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 500.\n\nCartridge Cost: 1","DescriptionJSON":null,"EffectRange":0,"ID":16162,"IconHD":"/i/003000/003426_hr1.png","Name":"Burst Strike","PreservesCombo":1,"PrimaryCostType":55,"PrimaryCostValue":1,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 320 to all nearby enemies.\n\nCartridge Cost: 1","DescriptionJSON":null,"EffectRange":5,"ID":16163,"IconHD":"/i/003000/003427_hr1.png","Name":"Fated Circle","PreservesCombo":1,"PrimaryCostType":55,"PrimaryCostValue":1,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":18,"Description":"Draws aetheric energy from target, adding 2 Cartridges to your Powder Gauge.","DescriptionJSON":null,"EffectRange":0,"ID":16164,"IconHD":"/i/003000/003428_hr1.png","Name":"Bloodfest","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":7,"Description":"Delivers an attack with a potency of 800.","DescriptionJSON":null,"EffectRange":0,"ID":16165,"IconHD":"/i/003000/003429_hr1.png","Name":"Blasting Zone","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"38":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 250.\n\nAdditional Effect: 50% chance of granting Flourishing Cascade\n\nDuration: 20s\n\n\n\n※Action changes to Emboite while dancing.","DescriptionJSON":null,"EffectRange":0,"ID":15989,"IconHD":"/i/003000/003451_hr1.png","Name":"Cascade","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":15989,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Cascade\n\nCombo Potency: 300\n\nCombo Bonus: 50% chance of granting Flourishing Fountain\n\nDuration: 20s\n\n\n\n※Action changes to Entrechat while dancing.","DescriptionJSON":null,"EffectRange":0,"ID":15990,"IconHD":"/i/003000/003452_hr1.png","Name":"Fountain","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":20,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 300. Additional Effect: 50% chance of granting a Fourfold Feather
\n
\n Can only be executed while under the effect of Flourishing Cascade.\n\n\n\n※Action changes to Jete while dancing.","DescriptionJSON":null,"EffectRange":0,"ID":15991,"IconHD":"/i/003000/003460_hr1.png","Name":"Reverse Cascade","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":1814,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 350.\n\nAdditional Effect: 50% chance of granting a Fourfold Feather\n\nCan only be executed while under the effect of Flourishing Fountain.\n\n\n\n※Action changes to Pirouette while dancing.","DescriptionJSON":null,"EffectRange":0,"ID":15992,"IconHD":"/i/003000/003464_hr1.png","Name":"Fountainfall","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":1815,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 150 to all nearby enemies.\n\nAdditional Effect: 50% chance of granting Flourishing Windmill\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":5,"ID":15993,"IconHD":"/i/003000/003453_hr1.png","Name":"Windmill","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":15993,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":25,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby enemies.\n\nCombo Action: Windmill\n\nCombo Potency: 200\n\nCombo Bonus: 50% chance of granting Flourishing Shower\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":5,"ID":15994,"IconHD":"/i/003000/003461_hr1.png","Name":"Bladeshower","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies with a potency of 300 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: 50% chance of granting a Fourfold Feather\n\nCan only be executed while under the effect of Flourishing Windmill.","DescriptionJSON":null,"EffectRange":5,"ID":15995,"IconHD":"/i/003000/003463_hr1.png","Name":"Rising Windmill","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":1816,"Range":0,"Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":1816,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies with a potency of 350 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: 50% chance of granting a Fourfold Feather\n\nCan only be executed while under the effect of Flourishing Shower.","DescriptionJSON":null,"EffectRange":5,"ID":15996,"IconHD":"/i/003000/003465_hr1.png","Name":"Bloodshower","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":1817,"Range":0,"Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":1817,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":9,"Description":"Begin dancing, granting yourself Standard Step.\n\nDuration: 15s\n\nAction changes to Standard Finish while dancing.\n\nOnly Standard Finish, En Avant, step actions, role actions, Sprint, and Limit Break can be performed while dancing.\n\nTriggers the cooldown of weaponskills, step actions, and finish actions upon execution. Cannot be executed during the cooldown of weaponskills, step actions, or finish actions.","DescriptionJSON":null,"EffectRange":0,"ID":15997,"IconHD":"/i/003000/003454_hr1.png","Name":"Standard Step","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":20,"Description":"Begin dancing, granting yourself Technical Step.\n\nDuration: 15s\n\nAction changes to Technical Finish while dancing.\n\nOnly Technical Finish, En Avant, step actions, role actions, Sprint, and Limit Break can be performed while dancing.\n\nTriggers the cooldown of weaponskills, step actions, and finish actions upon execution. Cannot be executed during the cooldown of weaponskills, step actions, or finish actions.","DescriptionJSON":null,"EffectRange":0,"ID":15998,"IconHD":"/i/003000/003473_hr1.png","Name":"Technical Step","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Perform an emboite.\n\nWhen performed together with other step actions, in sequence, the potency of Standard Finish and Technical Finish is increased.\n\nTriggers the cooldown of step and finish actions upon execution. Cannot be executed during the cooldown of weaponskills, step actions, or finish actions.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":15999,"IconHD":"/i/003000/003455_hr1.png","Name":"Emboite","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":90,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Perform an entrechat.\n\nWhen performed together with other step actions, in sequence, the potency of Standard Finish and Technical Finish is increased.\n\nTriggers the cooldown of step and finish actions upon execution. Cannot be executed during the cooldown of weaponskills, step actions, or finish actions.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16000,"IconHD":"/i/003000/003456_hr1.png","Name":"Entrechat","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":90,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Perform a jete.\n\nWhen performed together with other step actions, in sequence, the potency of Standard Finish and Technical Finish is increased.\n\nTriggers the cooldown of step and finish actions upon execution. Cannot be executed during the cooldown of weaponskills, step actions, or finish actions.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16001,"IconHD":"/i/003000/003457_hr1.png","Name":"Jete","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":90,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Perform a pirouette.\n\nWhen performed together with other step actions, in sequence, the potency of Standard Finish and Technical Finish is increased.\n\nTriggers the cooldown of step and finish actions upon execution. Cannot be executed during the cooldown of weaponskills, step actions, or finish actions.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16002,"IconHD":"/i/003000/003458_hr1.png","Name":"Pirouette","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":90,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.\n\n0 steps: 500\n\n1 step: 750\n\n2 steps: 1,000 Step Bonus: Grants Standard Finish and Esprit to self and party member designated as your Dance Partner Damage bonus of Standard Finish varies with number of successful steps.\n\n1 step: 2%\n\n2 steps: 5%\n\nDuration: 60s\n\nTriggers the cooldown of weaponskills, step actions, and finish actions upon execution. Cannot be executed during the cooldown of weaponskills, step actions, or finish actions.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":16003,"IconHD":"/i/003000/003459_hr1.png","Name":"Standard Finish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":70,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.\n\n0 steps: 500\n\n1 step: 750\n\n2 steps: 1,000\n\n3 steps: 1,250\n\n4 steps: 1,500 Step Bonus: Grants Technical Finish and Esprit to self and party members Damage bonus of Technical Finish varies with number of successful steps.\n\n1 step: 1%\n\n2 steps: 2%\n\n3 steps: 3%\n\n4 steps: 5%\n\nDuration: 20s\n\nAdditional Effect: Activates the Esprit Gauge\n\nTriggers the cooldown of weaponskills, step actions, and finish actions upon execution. Cannot be executed during the cooldown of weaponskills, step actions, or finish actions.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":16004,"IconHD":"/i/003000/003474_hr1.png","Name":"Technical Finish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":4,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Delivers an attack to target and all enemies nearby it with a potency of 600 for the first enemy, and 50% less for all remaining enemies.\n\nEsprit Gauge Cost: 50","DescriptionJSON":null,"EffectRange":5,"ID":16005,"IconHD":"/i/003000/003476_hr1.png","Name":"Saber Dance","PreservesCombo":1,"PrimaryCostType":54,"PrimaryCostValue":50,"Range":"-1","Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":1,"Description":"Grants you Closed Position and designates a party member as your Dance Partner, allowing you to share the effects of Standard Finish, Devilment, and Curing Waltz with said party member.\n\nEffect ends upon reuse.","DescriptionJSON":null,"EffectRange":0,"ID":16006,"IconHD":"/i/003000/003470_hr1.png","Name":"Closed Position","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":300,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":2,"Description":"Delivers an attack with a potency of 150.\n\nAdditional Effect: 50% chance of granting Flourishing Fan Dance\n\nDuration: 20s\n\nCan only be executed while in possession of Fourfold Feathers.","DescriptionJSON":null,"EffectRange":0,"ID":16007,"IconHD":"/i/003000/003462_hr1.png","Name":"Fan Dance","PreservesCombo":1,"PrimaryCostType":53,"PrimaryCostValue":1,"Range":"-1","Recast100ms":10,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":50,"CooldownGroup":3,"Description":"Delivers an attack with a potency of 100 to all nearby enemies.\n\nAdditional Effect: 50% chance of granting Flourishing Fan Dance\n\nDuration: 20s\n\nCan only be executed while in possession of Fourfold Feathers.","DescriptionJSON":null,"EffectRange":5,"ID":16008,"IconHD":"/i/003000/003466_hr1.png","Name":"Fan Dance II","PreservesCombo":1,"PrimaryCostType":53,"PrimaryCostValue":1,"Range":0,"Recast100ms":10,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":66,"CooldownGroup":4,"Description":"Delivers an attack to target and all enemies nearby it with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nCan only be executed while under the effect of Flourishing Fan Dance.","DescriptionJSON":null,"EffectRange":5,"ID":16009,"IconHD":"/i/003000/003472_hr1.png","Name":"Fan Dance III","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":10,"SecondaryCostType":91,"SecondaryCostValue":1820,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":19,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":10,"Description":"Quickly dash 10 yalms forward. Maximum Charges: Cannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":16010,"IconHD":"/i/003000/003467_hr1.png","Name":"En Avant","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":62,"CooldownGroup":21,"Description":"Increases critical hit rate and direct hit rate by 20%.\n\nDuration: 20s\n\nAdditional Effect: Party member designated as your Dance Partner will also receive the effect of Devilment","DescriptionJSON":null,"EffectRange":0,"ID":16011,"IconHD":"/i/003000/003471_hr1.png","Name":"Devilment","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":56,"CooldownGroup":23,"Description":"Reduces damage taken by self and nearby party members by 10%.\n\nDuration: 15s\n\nEffect cannot be stacked with bard's Troubadour or machinist's Tactician.","DescriptionJSON":null,"EffectRange":20,"ID":16012,"IconHD":"/i/003000/003469_hr1.png","Name":"Shield Samba","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":72,"CooldownGroup":14,"Description":"Grants you the effects of Flourishing Cascade, Flourishing Fountain, Flourishing Windmill, Flourishing Shower, and Flourishing Fan Dance.","DescriptionJSON":null,"EffectRange":0,"ID":16013,"IconHD":"/i/003000/003475_hr1.png","Name":"Flourish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":7,"ClassJobLevel":80,"CooldownGroup":19,"Description":"Dance to the beat of your own drum, granting Improvisation to self.\n\nImprovisation Effect: Continuously increases Esprit Gauge while in combat\n\nDuration: 15s\n\nThe speed at which the gauge increases varies with the number of nearby party members. Furthermore, HP recovery via healing actions for self and nearby party members is increased by 10%.\n\nEffect ends upon using another action or moving (including facing a different direction).\n\nCancels auto-attack upon execution.","DescriptionJSON":null,"EffectRange":6,"ID":16014,"IconHD":"/i/003000/003477_hr1.png","Name":"Improvisation","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":52,"CooldownGroup":15,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 300\n\nAdditional Effect: Party member designated as your Dance Partner will also heal self and nearby party members","DescriptionJSON":null,"EffectRange":3,"ID":16015,"IconHD":"/i/003000/003468_hr1.png","Name":"Curing Waltz","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0}]} \ No newline at end of file +{"2":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 210 . Leaden Fist Potency: Opo-opo Form Bonus: Guarantees a critical hit\n\nAdditional Effect: Changes form to raptor\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":53,"IconHD":"/i/000000/000208_hr1.png","Name":"Bootshine","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 300 .\n\nCan only be executed when in raptor form.\n\nAdditional Effect: Changes form to coeurl\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":54,"IconHD":"/i/000000/000209_hr1.png","Name":"True Strike","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":108,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":6,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 250 . 310 when executed from a target's flank.\n\nCan only be executed when in coeurl form.\n\nAdditional Effect: Changes form to opo-opo\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":56,"IconHD":"/i/000000/000210_hr1.png","Name":"Snap Punch","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":109,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":18,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 280 .\n\nCan only be executed when in raptor form.\n\nAdditional Effect: Grants Disciplined Fist\n\nDisciplined Fist Effect: Increases damage dealt by 15 %\n\nDuration: 15s\n\nAdditional Effect: Changes form to coeurl\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":61,"IconHD":"/i/000000/000213_hr1.png","Name":"Twin Snakes","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":108,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby targets.\n\nOpo-opo Form Potency: 110\n\nAdditional Effect: Changes form to raptor\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":5,"ID":62,"IconHD":"/i/000000/000215_hr1.png","Name":"Arm of the Destroyer","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":430,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":42,"CooldownGroup":16,"Description":"Increases HP recovery via healing actions by 10% for self and nearby party members.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":15,"ID":65,"IconHD":"/i/000000/000216_hr1.png","Name":"Mantra","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 70 . 130 when executed from a target's rear.\n\nCan only be executed when in coeurl form.\n\nAdditional Effect: Damage over time\n\nPotency: 70\n\nDuration: 18s\n\nAdditional Effect: Changes form to opo-opo\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":66,"IconHD":"/i/000000/000204_hr1.png","Name":"Demolish","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":109,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":11,"Description":"Grants 3 stacks of Perfect Balance, each stack allowing the execution of a weaponskill that requires a certain form, without being in that form.\n\nDuration: 20s Additional Effect: Grants Opo-opo Chakra, Coeurl Chakra, or Raptor Chakra depending on the form required by actions executed
\n
\n Maximum Charges: 2 Can only be executed while in combat and when not under the effect of any Beast Chakra.","DescriptionJSON":null,"EffectRange":0,"ID":69,"IconHD":"/i/000000/000217_hr1.png","Name":"Perfect Balance","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":400,"SecondaryCostType":132,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 320 .\n\nOpo-opo Form Bonus: Grants Leaden Fist\n\nDuration: 30s\n\nAdditional Effect: Changes form to raptor\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":74,"IconHD":"/i/002000/002528_hr1.png","Name":"Dragon Kick","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Opens a chakra. Up to five chakra can be opened at once.\n\nOpens all five chakra when used outside of combat.\n\nShares a recast timer with all other weaponskills.\n\n\n\n※Action changes to The Forbidden Chakra when all five chakra are open.","DescriptionJSON":null,"EffectRange":0,"ID":3546,"IconHD":"/i/002000/002534_hr1.png","Name":"Meditation","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":10,"SecondaryCostType":121,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 180.\n\nCan only be executed while in combat and under the effect of the Fifth Chakra. The five chakra close upon execution.\n\nShares a recast timer with Howling Fist.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25761,"IconHD":"/i/002000/002530_hr1.png","Name":"Steel Peak","PreservesCombo":1,"PrimaryCostType":28,"PrimaryCostValue":5,"Range":"-1","Recast100ms":10,"SecondaryCostType":122,"SecondaryCostValue":428,"TargetArea":0}],"3":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 200 .","DescriptionJSON":null,"EffectRange":0,"ID":31,"IconHD":"/i/000000/000260_hr1.png","Name":"Heavy Swing","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":31,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 130 .\n\nCombo Action: Heavy Swing\n\nCombo Potency: 280
\nCombo Bonus: Increases Beast Gauge by 10","DescriptionJSON":null,"EffectRange":0,"ID":37,"IconHD":"/i/000000/000255_hr1.png","Name":"Maim","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":6,"CooldownGroup":11,"Description":"Grants 3 stacks of Berserk, each stack guaranteeing weaponskill attacks are critical and direct hits.\n\nDuration: 15s
\nAdditional Effect: Extends Surging Tempest duration by 10s to a maximum of 60s","DescriptionJSON":null,"EffectRange":0,"ID":38,"IconHD":"/i/000000/000259_hr1.png","Name":"Berserk","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":63,"SecondaryCostValue":218,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":17,"Description":"Increases maximum HP by 20% and restores the amount increased. Additional Effect: Increases HP recovery via healing actions on self by 20%
\n
\n Duration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":40,"IconHD":"/i/000000/000263_hr1.png","Name":"Thrill of Battle","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":10,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 110 to all nearby enemies.","DescriptionJSON":null,"EffectRange":5,"ID":41,"IconHD":"/i/000000/000254_hr1.png","Name":"Overpower","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":37,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 120 .\n\nCombo Action: Maim\n\nCombo Potency: 400 Combo Bonus: Restores own HP\n\nCure Potency: 250
\nCombo Bonus: Increases Beast Gauge by 20","DescriptionJSON":null,"EffectRange":0,"ID":42,"IconHD":"/i/000000/000258_hr1.png","Name":"Storm's Path","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":42,"CooldownGroup":24,"Description":"Brace yourself for an enemy onslaught, preventing most attacks from reducing your HP to less than 1.\n\nDuration: 10s\n\nWhen a target is selected, halts their movement with chains.","DescriptionJSON":null,"EffectRange":0,"ID":43,"IconHD":"/i/000000/000266_hr1.png","Name":"Holmgang","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":6,"Recast100ms":2400,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":38,"CooldownGroup":22,"Description":"Reduces damage taken by 30% and delivers an attack with a potency of 55 every time you suffer physical damage.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":44,"IconHD":"/i/000000/000267_hr1.png","Name":"Vengeance","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":37,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 120 .\n\nCombo Action: Maim\n\nCombo Potency: 400 Combo Bonus: Grants Surging Tempest, increasing damage dealt by 10%\n\nDuration: 30s\n\nExtends Surging Tempest duration by 30s to a maximum of 60s.
\nCombo Bonus: Increases Beast Gauge by 10","DescriptionJSON":null,"EffectRange":0,"ID":45,"IconHD":"/i/000000/000264_hr1.png","Name":"Storm's Eye","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Delivers a ranged attack with a potency of 150.\n\nAdditional Effect: Increased enmity","DescriptionJSON":null,"EffectRange":0,"ID":46,"IconHD":"/i/000000/000261_hr1.png","Name":"Tomahawk","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":10,"CooldownGroup":3,"Description":"Significantly increases enmity generation.\n\nEffect ends upon reuse.","DescriptionJSON":null,"EffectRange":0,"ID":48,"IconHD":"/i/002000/002551_hr1.png","Name":"Defiance","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":30,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"4":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 230 .
\n
\n
\n※Action changes to Raiden Thrust while under the effect of Draconian Fire.","DescriptionJSON":null,"EffectRange":0,"ID":75,"IconHD":"/i/000000/000310_hr1.png","Name":"True Thrust","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":75,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 130 .\n\nCombo Action: True Thrust\n\nCombo Potency: 280","DescriptionJSON":null,"EffectRange":0,"ID":78,"IconHD":"/i/000000/000312_hr1.png","Name":"Vorpal Thrust","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":6,"CooldownGroup":15,"Description":"Ensures critical damage for first weaponskill used while Life Surge is active.\n\nDuration: 5s\n\nEffect cannot be applied to damage over time.\n\nAdditional Effect: Absorbs a portion of damage dealt as HP
\nMaximum Charges: 2","DescriptionJSON":null,"EffectRange":0,"ID":83,"IconHD":"/i/000000/000304_hr1.png","Name":"Life Surge","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":450,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":78,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Vorpal Thrust\n\nCombo Potency: 400
\nCombo Bonus: Grants Fang and Claw Bared
\n
\nDuration: 30s
\n
\nEffect of Fang and Claw Bared ends upon execution of any melee weaponskill.","DescriptionJSON":null,"EffectRange":0,"ID":84,"IconHD":"/i/000000/000314_hr1.png","Name":"Full Thrust","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":437,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":10,"Description":"Increases damage dealt by 10%.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":85,"IconHD":"/i/000000/000309_hr1.png","Name":"Lance Charge","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":75,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":18,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 140 .\n\nCombo Action: True Thrust\n\nCombo Potency: 250 Combo Bonus: Grants Power Surge\n\nPower Surge Effect: Increases damage dealt by 10%\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":87,"IconHD":"/i/000000/000317_hr1.png","Name":"Disembowel","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":87,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\n140 when executed from a target's rear.\n\nCombo Action: Disembowel\n\nCombo Potency: 220\n\nRear Combo Potency: 260\n\nCombo Bonus: Damage over time\n\nPotency: 40\n\nDuration: 24s
\nCombo Bonus: Grants Wheel in Motion
\n
\nDuration: 30s
\n
\nEffect of Wheel in Motion ends upon execution of any melee weaponskill.","DescriptionJSON":null,"EffectRange":0,"ID":88,"IconHD":"/i/000000/000308_hr1.png","Name":"Chaos Thrust","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":437,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Delivers a ranged attack with a potency of 150.","DescriptionJSON":null,"EffectRange":0,"ID":90,"IconHD":"/i/000000/000315_hr1.png","Name":"Piercing Talon","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"5":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 160.
\nAdditional Effect: 20% chance of becoming Straight Shot Ready
\n
\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":97,"IconHD":"/i/000000/000358_hr1.png","Name":"Heavy Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":285,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 200.\n\nCan only be executed when Straight Shot Ready.","DescriptionJSON":null,"EffectRange":0,"ID":98,"IconHD":"/i/000000/000359_hr1.png","Name":"Straight Shot","PreservesCombo":0,"PrimaryCostType":10,"PrimaryCostValue":122,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":122,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":6,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nAdditional Effect: Venom\n\nPotency: 15\n\nDuration: 45s","DescriptionJSON":null,"EffectRange":0,"ID":100,"IconHD":"/i/000000/000363_hr1.png","Name":"Venomous Bite","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":168,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":14,"Description":"Increases damage dealt by 15%.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":101,"IconHD":"/i/000000/000352_hr1.png","Name":"Raging Strikes","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":18,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 110 to all enemies in a cone before you.
\nAdditional Effect: 35% chance of becoming Shadowbite Ready
\n
\nDuration: 30s","DescriptionJSON":null,"EffectRange":12,"ID":106,"IconHD":"/i/000000/000360_hr1.png","Name":"Quick Nock","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":12,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":444,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":38,"CooldownGroup":20,"Description":"Triples the number of strikes for a single-target weaponskill. Additional effects added only once.\n\nDuration: 10s Additional Effect: Increases the potency of Shadowbite to 270
\n
\n Additional Effect: Grants Straight Shot Ready\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":107,"IconHD":"/i/000000/000353_hr1.png","Name":"Barrage","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":12,"CooldownGroup":5,"Description":"Delivers an attack with a potency of 110.\n\nMaximum Charges: 3
\nShares a recast timer with Rain of Death.","DescriptionJSON":null,"EffectRange":0,"ID":110,"IconHD":"/i/000000/000361_hr1.png","Name":"Bloodletter","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":150,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":3,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":6,"Description":"Jump 10 yalms away from current target.\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":112,"IconHD":"/i/000000/000366_hr1.png","Name":"Repelling Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Deals wind damage with a potency of 60.\n\nAdditional Effect: Wind damage over time\n\nPotency: 20\n\nDuration: 45s","DescriptionJSON":null,"EffectRange":0,"ID":113,"IconHD":"/i/000000/000367_hr1.png","Name":"Windbite","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":168,"TargetArea":0}],"6":[{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals earth damage with a potency of 140.","DescriptionJSON":null,"EffectRange":0,"ID":119,"IconHD":"/i/000000/000403_hr1.png","Name":"Stone","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":179,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 500
\nAdditional Effect: 15% chance next Cure II will cost no MP
\n
\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":120,"IconHD":"/i/000000/000405_hr1.png","Name":"Cure","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Deals wind damage with a potency of 50.\n\nAdditional Effect: Wind damage over time\n\nPotency: 30\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":121,"IconHD":"/i/000000/000401_hr1.png","Name":"Aero","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":180,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":10,"CooldownGroup":58,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 400","DescriptionJSON":null,"EffectRange":15,"ID":124,"IconHD":"/i/000000/000408_hr1.png","Name":"Medica","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":9,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":80,"CastType":1,"ClassJobLevel":12,"CooldownGroup":58,"Description":"Resurrects target to a weakened state.","DescriptionJSON":null,"EffectRange":0,"ID":125,"IconHD":"/i/000000/000411_hr1.png","Name":"Raise","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":24,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":18,"CooldownGroup":58,"Description":"Deals earth damage with a potency of 190.","DescriptionJSON":null,"EffectRange":0,"ID":127,"IconHD":"/i/000000/000404_hr1.png","Name":"Stone II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":181,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":46,"CooldownGroup":58,"Description":"Deals wind damage with a potency of 50.\n\nAdditional Effect: Wind damage over time\n\nPotency: 50\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":132,"IconHD":"/i/000000/000402_hr1.png","Name":"Aero II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":307,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":50,"CooldownGroup":58,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 250 Additional Effect: Regen\n\nCure Potency: 150 Duration: 15s","DescriptionJSON":null,"EffectRange":20,"ID":133,"IconHD":"/i/000000/000409_hr1.png","Name":"Medica II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":10,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":9,"Description":"Binds target.\n\nDuration: 6s","DescriptionJSON":null,"EffectRange":0,"ID":134,"IconHD":"/i/000000/000416_hr1.png","Name":"Fluid Aura","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 800","DescriptionJSON":null,"EffectRange":0,"ID":135,"IconHD":"/i/000000/000406_hr1.png","Name":"Cure II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":10,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"7":[{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 180.\n\nAdditional Effect: Grants Astral Fire or removes Umbral Ice\n\nDuration: 15s
\nAdditional Effect: 40% chance next Fire III will cost no MP and have no cast time
\n
\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":141,"IconHD":"/i/000000/000451_hr1.png","Name":"Fire","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":8,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals ice damage with a potency of 180.\n\nAdditional Effect: Grants Umbral Ice or removes Astral Fire\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":142,"IconHD":"/i/000000/000454_hr1.png","Name":"Blizzard","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":6,"CooldownGroup":58,"Description":"Deals lightning damage with a potency of 30.\n\nAdditional Effect: Lightning damage over time\n\nPotency: 35\n\nDuration: 21s
\nAdditional Effect: 10% chance after each tick that the next Thunder spell of any grade will add its full damage over time amount to its initial damage, have no cast time, and cost no MP
\n
\nDuration: 40s
\n
\n Only one Thunder spell-induced damage over time effect per caster can be inflicted upon a single target.","DescriptionJSON":null,"EffectRange":0,"ID":144,"IconHD":"/i/000000/000457_hr1.png","Name":"Thunder","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":171,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":30,"CastType":2,"ClassJobLevel":18,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 100 to target and all enemies nearby it.\n\nAdditional Effect: Grants Astral Fire III and removes Umbral Ice Duration: 15s
\nAstral Fire Bonus: Grants Enhanced Flare
\n
\nEffect is canceled if Astral Fire ends.","DescriptionJSON":null,"EffectRange":5,"ID":147,"IconHD":"/i/000000/000452_hr1.png","Name":"Fire II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":15,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":462,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":1,"Description":"Swaps Astral Fire with a single Umbral Ice, or Umbral Ice with a single Astral Fire.","DescriptionJSON":null,"EffectRange":0,"ID":149,"IconHD":"/i/000000/000466_hr1.png","Name":"Transpose","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":50,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":35,"CastType":1,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 260.\n\nAdditional Effect: Grants Astral Fire III and removes Umbral Ice\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":152,"IconHD":"/i/000000/000453_hr1.png","Name":"Fire III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":20,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":5,"Description":"Rush to a target party member's side.\n\nUnable to cast if bound.","DescriptionJSON":null,"EffectRange":0,"ID":155,"IconHD":"/i/000000/000467_hr1.png","Name":"Aetherial Manipulation","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":100,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 100.\n\nAdditional Effect: 20% chance potency will double","DescriptionJSON":null,"EffectRange":0,"ID":156,"IconHD":"/i/000000/000462_hr1.png","Name":"Scathe","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":8,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":22,"Description":"Creates a barrier that nullifies damage totaling up to 30% of maximum HP.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":157,"IconHD":"/i/000000/000463_hr1.png","Name":"Manaward","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":2,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Deals lightning damage with a potency of 50 to target and all enemies nearby it.\n\nAdditional Effect: Lightning damage over time\n\nPotency: 15\n\nDuration: 18s
\nAdditional Effect: 3% chance after each tick that the next Thunder spell of any grade will add its full damage over time amount to its initial damage, have no cast time, and cost no MP
\n
\nDuration: 40s
\n
\n Only one Thunder spell-induced damage over time effect per caster can be inflicted upon a single target.","DescriptionJSON":null,"EffectRange":5,"ID":7447,"IconHD":"/i/000000/000468_hr1.png","Name":"Thunder II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":172,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":30,"CastType":2,"ClassJobLevel":12,"CooldownGroup":58,"Description":"Deals ice damage with a potency of 100 to target and all enemies nearby it.\n\nAdditional Effect: Grants Umbral Ice III and removes Astral Fire\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":5,"ID":25793,"IconHD":"/i/002000/002668_hr1.png","Name":"Blizzard II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":8,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":462,"TargetArea":0}],"8":[{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":21,"CooldownGroup":0,"Description":"Increases the efficiency of next Touch action by 100%. Effect active for three steps.","DescriptionJSON":null,"EffectRange":0,"ID":260,"IconHD":"/i/001000/001955_hr1.png","Name":"Great Strides","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":32,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Restores 5 points of durability after each step for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4574,"IconHD":"/i/001000/001985_hr1.png","Name":"Manipulation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":96,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":4631,"IconHD":"/i/001000/001992_hr1.png","Name":"Waste Not","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":56,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":47,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4639,"IconHD":"/i/001000/001993_hr1.png","Name":"Waste Not II","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":98,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":0,"Description":"Increases efficiency of Touch actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19004,"IconHD":"/i/001000/001987_hr1.png","Name":"Innovation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":42,"CooldownGroup":0,"Description":"The next action that would complete item synthesis will instead leave one progress point remaining.\n\nEffect active for five steps.","DescriptionJSON":null,"EffectRange":0,"ID":19012,"IconHD":"/i/001000/001983_hr1.png","Name":"Final Appraisal","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":1,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases efficiency of Synthesis actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19297,"IconHD":"/i/001000/001995_hr1.png","Name":"Veneration","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"9":[{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":21,"CooldownGroup":0,"Description":"Increases the efficiency of next Touch action by 100%. Effect active for three steps.","DescriptionJSON":null,"EffectRange":0,"ID":261,"IconHD":"/i/001000/001955_hr1.png","Name":"Great Strides","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":32,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Restores 5 points of durability after each step for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4575,"IconHD":"/i/001000/001985_hr1.png","Name":"Manipulation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":96,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":4632,"IconHD":"/i/001000/001992_hr1.png","Name":"Waste Not","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":56,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":47,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4640,"IconHD":"/i/001000/001993_hr1.png","Name":"Waste Not II","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":98,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":0,"Description":"Increases efficiency of Touch actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19005,"IconHD":"/i/001000/001987_hr1.png","Name":"Innovation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":42,"CooldownGroup":0,"Description":"The next action that would complete item synthesis will instead leave one progress point remaining.\n\nEffect active for five steps.","DescriptionJSON":null,"EffectRange":0,"ID":19013,"IconHD":"/i/001000/001983_hr1.png","Name":"Final Appraisal","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":1,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases efficiency of Synthesis actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19298,"IconHD":"/i/001000/001995_hr1.png","Name":"Veneration","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"10":[{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":21,"CooldownGroup":0,"Description":"Increases the efficiency of next Touch action by 100%. Effect active for three steps.","DescriptionJSON":null,"EffectRange":0,"ID":262,"IconHD":"/i/001000/001955_hr1.png","Name":"Great Strides","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":32,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Restores 5 points of durability after each step for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4576,"IconHD":"/i/001000/001985_hr1.png","Name":"Manipulation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":96,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":4633,"IconHD":"/i/001000/001992_hr1.png","Name":"Waste Not","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":56,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":47,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4641,"IconHD":"/i/001000/001993_hr1.png","Name":"Waste Not II","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":98,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":0,"Description":"Increases efficiency of Touch actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19006,"IconHD":"/i/001000/001987_hr1.png","Name":"Innovation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":42,"CooldownGroup":0,"Description":"The next action that would complete item synthesis will instead leave one progress point remaining.\n\nEffect active for five steps.","DescriptionJSON":null,"EffectRange":0,"ID":19014,"IconHD":"/i/001000/001983_hr1.png","Name":"Final Appraisal","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":1,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases efficiency of Synthesis actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19299,"IconHD":"/i/001000/001995_hr1.png","Name":"Veneration","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"11":[{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":21,"CooldownGroup":0,"Description":"Increases the efficiency of next Touch action by 100%. Effect active for three steps.","DescriptionJSON":null,"EffectRange":0,"ID":263,"IconHD":"/i/001000/001955_hr1.png","Name":"Great Strides","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":32,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Restores 5 points of durability after each step for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4577,"IconHD":"/i/001000/001985_hr1.png","Name":"Manipulation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":96,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":4634,"IconHD":"/i/001000/001992_hr1.png","Name":"Waste Not","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":56,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":47,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4642,"IconHD":"/i/001000/001993_hr1.png","Name":"Waste Not II","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":98,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":0,"Description":"Increases efficiency of Touch actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19007,"IconHD":"/i/001000/001987_hr1.png","Name":"Innovation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":42,"CooldownGroup":0,"Description":"The next action that would complete item synthesis will instead leave one progress point remaining.\n\nEffect active for five steps.","DescriptionJSON":null,"EffectRange":0,"ID":19015,"IconHD":"/i/001000/001983_hr1.png","Name":"Final Appraisal","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":1,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases efficiency of Synthesis actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19300,"IconHD":"/i/001000/001995_hr1.png","Name":"Veneration","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"12":[{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":21,"CooldownGroup":0,"Description":"Increases the efficiency of next Touch action by 100%. Effect active for three steps.","DescriptionJSON":null,"EffectRange":0,"ID":265,"IconHD":"/i/001000/001955_hr1.png","Name":"Great Strides","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":32,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Restores 5 points of durability after each step for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4578,"IconHD":"/i/001000/001985_hr1.png","Name":"Manipulation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":96,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":4635,"IconHD":"/i/001000/001992_hr1.png","Name":"Waste Not","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":56,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":47,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4643,"IconHD":"/i/001000/001993_hr1.png","Name":"Waste Not II","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":98,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":0,"Description":"Increases efficiency of Touch actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19008,"IconHD":"/i/001000/001987_hr1.png","Name":"Innovation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":42,"CooldownGroup":0,"Description":"The next action that would complete item synthesis will instead leave one progress point remaining.\n\nEffect active for five steps.","DescriptionJSON":null,"EffectRange":0,"ID":19016,"IconHD":"/i/001000/001983_hr1.png","Name":"Final Appraisal","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":1,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases efficiency of Synthesis actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19301,"IconHD":"/i/001000/001995_hr1.png","Name":"Veneration","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"13":[{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":21,"CooldownGroup":0,"Description":"Increases the efficiency of next Touch action by 100%. Effect active for three steps.","DescriptionJSON":null,"EffectRange":0,"ID":264,"IconHD":"/i/001000/001955_hr1.png","Name":"Great Strides","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":32,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Restores 5 points of durability after each step for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4579,"IconHD":"/i/001000/001985_hr1.png","Name":"Manipulation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":96,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":4636,"IconHD":"/i/001000/001992_hr1.png","Name":"Waste Not","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":56,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":47,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4644,"IconHD":"/i/001000/001993_hr1.png","Name":"Waste Not II","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":98,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":0,"Description":"Increases efficiency of Touch actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19009,"IconHD":"/i/001000/001987_hr1.png","Name":"Innovation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":42,"CooldownGroup":0,"Description":"The next action that would complete item synthesis will instead leave one progress point remaining.\n\nEffect active for five steps.","DescriptionJSON":null,"EffectRange":0,"ID":19017,"IconHD":"/i/001000/001983_hr1.png","Name":"Final Appraisal","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":1,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases efficiency of Synthesis actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19302,"IconHD":"/i/001000/001995_hr1.png","Name":"Veneration","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"14":[{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":21,"CooldownGroup":0,"Description":"Increases the efficiency of next Touch action by 100%. Effect active for three steps.","DescriptionJSON":null,"EffectRange":0,"ID":266,"IconHD":"/i/001000/001955_hr1.png","Name":"Great Strides","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":32,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Restores 5 points of durability after each step for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4580,"IconHD":"/i/001000/001985_hr1.png","Name":"Manipulation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":96,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":4637,"IconHD":"/i/001000/001992_hr1.png","Name":"Waste Not","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":56,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":47,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":19002,"IconHD":"/i/001000/001993_hr1.png","Name":"Waste Not II","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":98,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":0,"Description":"Increases efficiency of Touch actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19010,"IconHD":"/i/001000/001987_hr1.png","Name":"Innovation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":42,"CooldownGroup":0,"Description":"The next action that would complete item synthesis will instead leave one progress point remaining.\n\nEffect active for five steps.","DescriptionJSON":null,"EffectRange":0,"ID":19018,"IconHD":"/i/001000/001983_hr1.png","Name":"Final Appraisal","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":1,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases efficiency of Synthesis actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19303,"IconHD":"/i/001000/001995_hr1.png","Name":"Veneration","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"15":[{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":21,"CooldownGroup":0,"Description":"Increases the efficiency of next Touch action by 100%. Effect active for three steps.","DescriptionJSON":null,"EffectRange":0,"ID":267,"IconHD":"/i/001000/001955_hr1.png","Name":"Great Strides","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":32,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Restores 5 points of durability after each step for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":4581,"IconHD":"/i/001000/001985_hr1.png","Name":"Manipulation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":96,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":4638,"IconHD":"/i/001000/001992_hr1.png","Name":"Waste Not","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":56,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":47,"CooldownGroup":0,"Description":"Reduces loss of durability by 50% for the next eight steps.","DescriptionJSON":null,"EffectRange":0,"ID":19003,"IconHD":"/i/001000/001993_hr1.png","Name":"Waste Not II","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":98,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":0,"Description":"Increases efficiency of Touch actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19011,"IconHD":"/i/001000/001987_hr1.png","Name":"Innovation","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":42,"CooldownGroup":0,"Description":"The next action that would complete item synthesis will instead leave one progress point remaining.\n\nEffect active for five steps.","DescriptionJSON":null,"EffectRange":0,"ID":19019,"IconHD":"/i/001000/001983_hr1.png","Name":"Final Appraisal","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":1,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":7,"Name":"DoH Ability","Name_de":"Talent (Synthese)","Name_en":"DoH Ability","Name_fr":"Aptitude d'artisanat","Name_ja":"製作アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases efficiency of Synthesis actions by 50% for the next four steps.","DescriptionJSON":null,"EffectRange":0,"ID":19304,"IconHD":"/i/001000/001995_hr1.png","Name":"Veneration","PreservesCombo":0,"PrimaryCostType":8,"PrimaryCostValue":18,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"16":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":0,"Description":"Surveys the landscape to locate mineral deposits and rocky outcrops. Activates automatically when class is changed to miner.","DescriptionJSON":null,"EffectRange":0,"ID":227,"IconHD":"/i/001000/001001_hr1.png","Name":"Prospect","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":3,"CooldownGroup":66,"Description":"Surveys the landscape to locate the nearest mineral deposit or rocky outcrop within skill range. Can only be executed while Prospect is active.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":228,"IconHD":"/i/001000/001002_hr1.png","Name":"Lay of the Land","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":32,"SecondaryCostValue":225,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":25,"CooldownGroup":0,"Description":"Grants another gathering attempt. When gathering collectables, restores 1 integrity.
\nAdditional Effect: 50% chance to grant Eureka Moment","DescriptionJSON":null,"EffectRange":0,"ID":232,"IconHD":"/i/001000/001009_hr1.png","Name":"Solid Reason","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":300,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":0,"Description":"Increases the chance of obtaining items while gathering by 5%. Does not apply to items at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":235,"IconHD":"/i/001000/001015_hr1.png","Name":"Sharp Vision","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":50,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":5,"CooldownGroup":0,"Description":"Increases the chance of obtaining items while gathering by 15%. Does not apply to items at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":237,"IconHD":"/i/001000/001016_hr1.png","Name":"Sharp Vision II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":46,"CooldownGroup":0,"Description":"Further surveys the landscape to uncover unspoiled, legendary, and clouded mineral deposits and rocky outcrops.","DescriptionJSON":null,"EffectRange":0,"ID":238,"IconHD":"/i/001000/001019_hr1.png","Name":"Truth of Mountains","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":0,"Description":"Increases the number of items obtained when gathering by one.","DescriptionJSON":null,"EffectRange":0,"ID":239,"IconHD":"/i/001000/001006_hr1.png","Name":"King's Yield","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":400,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":0,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Gathers a collectable item with its current collectability rating.\n\nReduces integrity by 1.","DescriptionJSON":null,"EffectRange":0,"ID":240,"IconHD":"/i/001000/001044_hr1.png","Name":"Collect","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":0,"Description":"Increases the number of items obtained when gathering by two.","DescriptionJSON":null,"EffectRange":0,"ID":241,"IconHD":"/i/001000/001007_hr1.png","Name":"King's Yield II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":500,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":0,"Description":"Increases the number of items obtained on your next gathering attempt by one, two, or three. Number determined by your gathering rating.","DescriptionJSON":null,"EffectRange":0,"ID":272,"IconHD":"/i/001000/001035_hr1.png","Name":"Bountiful Yield II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":20,"CooldownGroup":0,"Description":"Increases elemental shard , crystal, and cluster yields by 3 .\n\nCannot be executed if the gathering node does not yield shards , crystals, or clusters .","DescriptionJSON":null,"EffectRange":0,"ID":280,"IconHD":"/i/001000/001043_hr1.png","Name":"the Twelve's Bounty","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":150,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":5,"CooldownGroup":66,"Description":"Surveys the landscape to locate the highest-level mineral deposit or rocky outcrop within skill range. Can only be executed while Prospect is active.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":291,"IconHD":"/i/001000/001003_hr1.png","Name":"Lay of the Land II","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":32,"SecondaryCostValue":225,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":10,"CooldownGroup":0,"Description":"Increases the chance of obtaining items while gathering by 50%. Does not apply to items at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":295,"IconHD":"/i/001000/001017_hr1.png","Name":"Sharp Vision III","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":250,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":8,"CooldownGroup":0,"Description":"Tread quietly, enabling you to avoid enemies up to four levels above your own.","DescriptionJSON":null,"EffectRange":0,"ID":303,"IconHD":"/i/001000/001042_hr1.png","Name":"Sneak","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":38,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":23,"CooldownGroup":0,"Description":"Increases the chance of obtaining items on your next gathering attempt by 15%. Does not apply to items at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":4072,"IconHD":"/i/001000/001020_hr1.png","Name":"Clear Vision","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":50,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":24,"CooldownGroup":0,"Description":"Increases the number of items obtained on your next gathering attempt by one.","DescriptionJSON":null,"EffectRange":0,"ID":4073,"IconHD":"/i/001000/001021_hr1.png","Name":"Bountiful Yield","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":55,"CooldownGroup":0,"Description":"Uncovers a gathering node's hidden items.","DescriptionJSON":null,"EffectRange":0,"ID":4081,"IconHD":"/i/001000/001029_hr1.png","Name":"Luck of the Mountaineer","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":74,"CooldownGroup":70,"Description":"Increases elemental shard, crystal, and cluster yields by a random amount.\n\nEffect can be stacked with The Twelve's Bounty.\n\nCannot be executed if the gathering node does not yield shards, crystals, or clusters.","DescriptionJSON":null,"EffectRange":0,"ID":4589,"IconHD":"/i/001000/001039_hr1.png","Name":"The Giving Land","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":1800,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases the chance of triggering Gatherer's Boon by 10%. Does not apply to items at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":21177,"IconHD":"/i/001000/001045_hr1.png","Name":"Mountaineer's Gift I","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":50,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":81,"CooldownGroup":0,"Description":"Increases item yield from Gatherer's Boon by 1.","DescriptionJSON":null,"EffectRange":0,"ID":21203,"IconHD":"/i/001000/001047_hr1.png","Name":"Nald'thal's Tidings","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":85,"CooldownGroup":0,"Description":"Increases the chance to trigger Collector's Intuition by 75% on your next collectable action.","DescriptionJSON":null,"EffectRange":0,"ID":21205,"IconHD":"/i/001000/001048_hr1.png","Name":"Collector's Focus","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":46,"SecondaryCostValue":2668,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":0,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Increases collectability of an item. Increase is determined by your gathering rating.\n\nReduces integrity by 1.","DescriptionJSON":null,"EffectRange":0,"ID":22182,"IconHD":"/i/001000/001901_hr1.png","Name":"Scour","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":0,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Increases the collectability of an item. Increase is a random amount ranging from 50% to 150% of the effectiveness of Scour.\n\nReduces integrity by 1.","DescriptionJSON":null,"EffectRange":0,"ID":22183,"IconHD":"/i/001000/001902_hr1.png","Name":"Brazen Prospector","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":0,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Increases collectability of an item. Increase is 75% of the effectiveness of Scour.\n\nReduces integrity by 1. There is a chance integrity is unaffected, determined by your gathering rating.","DescriptionJSON":null,"EffectRange":0,"ID":22184,"IconHD":"/i/001000/001903_hr1.png","Name":"Meticulous Prospector","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Improves next item collectability increase. Effect is determined by your perception rating.","DescriptionJSON":null,"EffectRange":0,"ID":22185,"IconHD":"/i/001000/001904_hr1.png","Name":"Scrutiny","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":0,"SecondaryCostType":46,"SecondaryCostValue":757,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Increases the chance of triggering Gatherer's Boon by 30%. Does not apply to items at 0%.\n\nEffect can be stacked with Mountaineer's Gift I.","DescriptionJSON":null,"EffectRange":0,"ID":25589,"IconHD":"/i/001000/001046_hr1.png","Name":"Mountaineer's Gift II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":90,"CooldownGroup":0,"Description":"Grants another gathering attempt. When gathering collectables, restores 1 integrity.\n\nCan only be executed while under the effect of Eureka Moment.","DescriptionJSON":null,"EffectRange":0,"ID":26521,"IconHD":"/i/001000/001049_hr1.png","Name":"Wise to the World","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":32,"SecondaryCostValue":2765,"TargetArea":0}],"17":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":0,"Description":"Surveys the landscape to locate mature trees and lush vegetation. Activates automatically when class is changed to botanist.","DescriptionJSON":null,"EffectRange":0,"ID":210,"IconHD":"/i/001000/001051_hr1.png","Name":"Triangulate","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":3,"CooldownGroup":66,"Description":"Surveys the landscape to locate the nearest mature tree or lush vegetation within skill range. Can only be executed while Triangulate is active.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":211,"IconHD":"/i/001000/001052_hr1.png","Name":"Arbor Call","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":32,"SecondaryCostValue":217,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":25,"CooldownGroup":0,"Description":"Grants another gathering attempt. When gathering collectables, restores 1 integrity.
\nAdditional Effect: 50% chance to grant Eureka Moment","DescriptionJSON":null,"EffectRange":0,"ID":215,"IconHD":"/i/001000/001059_hr1.png","Name":"Ageless Words","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":300,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":0,"Description":"Increases the chance of obtaining items while gathering by 5%. Does not apply to items at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":218,"IconHD":"/i/001000/001065_hr1.png","Name":"Field Mastery","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":50,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":5,"CooldownGroup":0,"Description":"Increases the chance of obtaining items while gathering by 15%. Does not apply to items at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":220,"IconHD":"/i/001000/001066_hr1.png","Name":"Field Mastery II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":46,"CooldownGroup":0,"Description":"Further surveys the landscape to uncover unspoiled, legendary, and clouded mature trees and lush vegetation.","DescriptionJSON":null,"EffectRange":0,"ID":221,"IconHD":"/i/001000/001069_hr1.png","Name":"Truth of Forests","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":0,"Description":"Increases the number of items obtained when gathering by one.","DescriptionJSON":null,"EffectRange":0,"ID":222,"IconHD":"/i/001000/001056_hr1.png","Name":"Blessed Harvest","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":400,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":0,"Description":"Increases the number of items obtained when gathering by two.","DescriptionJSON":null,"EffectRange":0,"ID":224,"IconHD":"/i/001000/001057_hr1.png","Name":"Blessed Harvest II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":500,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":0,"Description":"Increases the number of items obtained on your next gathering attempt by one, two, or three. Number determined by your gathering rating.","DescriptionJSON":null,"EffectRange":0,"ID":273,"IconHD":"/i/001000/001085_hr1.png","Name":"Bountiful Harvest II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":20,"CooldownGroup":0,"Description":"Increases elemental shard , crystal, and cluster yields by 3 .\n\nCannot be executed if the gathering node does not yield shards , crystals, or clusters .","DescriptionJSON":null,"EffectRange":0,"ID":282,"IconHD":"/i/001000/001093_hr1.png","Name":"the Twelve's Bounty","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":150,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":5,"CooldownGroup":66,"Description":"Surveys the landscape to locate the highest-level mature tree or lush vegetation within skill range. Can only be executed while Triangulate is active.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":290,"IconHD":"/i/001000/001053_hr1.png","Name":"Arbor Call II","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":32,"SecondaryCostValue":217,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":10,"CooldownGroup":0,"Description":"Increases the chance of obtaining items while gathering by 50%. Does not apply to items at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":294,"IconHD":"/i/001000/001067_hr1.png","Name":"Field Mastery III","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":250,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":8,"CooldownGroup":0,"Description":"Tread quietly, enabling you to avoid enemies up to four levels above your own.","DescriptionJSON":null,"EffectRange":0,"ID":304,"IconHD":"/i/001000/001092_hr1.png","Name":"Sneak","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":38,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":0,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Gathers a collectable item with its current collectability rating.\n\nReduces integrity by 1.","DescriptionJSON":null,"EffectRange":0,"ID":815,"IconHD":"/i/001000/001094_hr1.png","Name":"Collect","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":23,"CooldownGroup":0,"Description":"Increases the chance of obtaining items on your next gathering attempt by 15%. Does not apply to items at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":4086,"IconHD":"/i/001000/001070_hr1.png","Name":"Flora Mastery","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":50,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":24,"CooldownGroup":0,"Description":"Increases the number of items obtained on your next gathering attempt by one.","DescriptionJSON":null,"EffectRange":0,"ID":4087,"IconHD":"/i/001000/001071_hr1.png","Name":"Bountiful Harvest","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":55,"CooldownGroup":0,"Description":"Uncovers a gathering node's hidden items.","DescriptionJSON":null,"EffectRange":0,"ID":4095,"IconHD":"/i/001000/001079_hr1.png","Name":"Luck of the Pioneer","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":74,"CooldownGroup":70,"Description":"Increases elemental shard, crystal, and cluster yields by a random amount.\n\nEffect can be stacked with The Twelve's Bounty.\n\nCannot be executed if the gathering node does not yield shards, crystals, or clusters.","DescriptionJSON":null,"EffectRange":0,"ID":4590,"IconHD":"/i/001000/001089_hr1.png","Name":"The Giving Land","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":1800,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases the chance of triggering Gatherer's Boon by 10%. Does not apply to items at 0%.","DescriptionJSON":null,"EffectRange":0,"ID":21178,"IconHD":"/i/001000/001095_hr1.png","Name":"Pioneer's Gift I","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":50,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":81,"CooldownGroup":0,"Description":"Increases item yield from Gatherer's Boon by 1.","DescriptionJSON":null,"EffectRange":0,"ID":21204,"IconHD":"/i/001000/001097_hr1.png","Name":"Nophica's Tidings","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":85,"CooldownGroup":0,"Description":"Increases the chance to trigger Collector's Intuition by 75% on your next collectable action.","DescriptionJSON":null,"EffectRange":0,"ID":21206,"IconHD":"/i/001000/001098_hr1.png","Name":"Collector's Focus","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":46,"SecondaryCostValue":2668,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":0,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Increases collectability of an item. Increase is determined by your gathering rating.\n\nReduces integrity by 1.","DescriptionJSON":null,"EffectRange":0,"ID":22186,"IconHD":"/i/001000/001901_hr1.png","Name":"Scour","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":0,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Increases the collectability of an item. Increase is a random amount ranging from 50% to 150% of the effectiveness of Scour.\n\nReduces integrity by 1.","DescriptionJSON":null,"EffectRange":0,"ID":22187,"IconHD":"/i/001000/001902_hr1.png","Name":"Brazen Woodsman","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":0,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Increases collectability of an item. Increase is 75% of the effectiveness of Scour.\n\nReduces integrity by 1. There is a chance integrity is unaffected, determined by your gathering rating.","DescriptionJSON":null,"EffectRange":0,"ID":22188,"IconHD":"/i/001000/001903_hr1.png","Name":"Meticulous Woodsman","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Improves next item collectability increase. Effect is determined by your perception rating.","DescriptionJSON":null,"EffectRange":0,"ID":22189,"IconHD":"/i/001000/001904_hr1.png","Name":"Scrutiny","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":0,"SecondaryCostType":46,"SecondaryCostValue":757,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Increases the chance of triggering Gatherer's Boon by 30%. Does not apply to items at 0%.\n\nEffect can be stacked with Pioneer's Gift I.","DescriptionJSON":null,"EffectRange":0,"ID":25590,"IconHD":"/i/001000/001096_hr1.png","Name":"Pioneer's Gift II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":90,"CooldownGroup":0,"Description":"Grants another gathering attempt. When gathering collectables, restores 1 integrity.\n\nCan only be executed while under the effect of Eureka Moment.","DescriptionJSON":null,"EffectRange":0,"ID":26522,"IconHD":"/i/001000/001099_hr1.png","Name":"Wise to the World","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":32,"SecondaryCostValue":2765,"TargetArea":0}],"18":[{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":63,"CooldownGroup":68,"Description":"Uses certain hooked fish of average size to attract even larger prey.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":268,"IconHD":"/i/001000/001117_hr1.png","Name":"Mooch II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":1800,"SecondaryCostType":56,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Hooks two or more fish in a single cast. Yield is determined by fish type and your gathering rating. Some fish cannot be double hooked.","DescriptionJSON":null,"EffectRange":0,"ID":269,"IconHD":"/i/001000/001118_hr1.png","Name":"Double Hook","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":400,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":0,"Description":"Selects the bait to apply to your line.","DescriptionJSON":null,"EffectRange":0,"ID":288,"IconHD":"/i/001000/001106_hr1.png","Name":"Bait","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":28,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":0,"Description":"Casts your line and begins fishing.","DescriptionJSON":null,"EffectRange":0,"ID":289,"IconHD":"/i/001000/001101_hr1.png","Name":"Cast","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":21,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":0,"Description":"Attempts to hook the fish nibbling on the bait.","DescriptionJSON":null,"EffectRange":0,"ID":296,"IconHD":"/i/001000/001103_hr1.png","Name":"Hook","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":23,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":25,"CooldownGroup":0,"Description":"Uses certain large-sized fish already hooked to your line to attract even greater prey.","DescriptionJSON":null,"EffectRange":0,"ID":297,"IconHD":"/i/001000/001104_hr1.png","Name":"Mooch","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":24,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":0,"Description":"Abandons fishing and stows your equipment.","DescriptionJSON":null,"EffectRange":0,"ID":299,"IconHD":"/i/001000/001102_hr1.png","Name":"Quit","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":22,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":22,"CooldownGroup":0,"Description":"Unhooks a fish (including all those of the same type subsequently caught at your current location) and releases it back into the wild.\n\nHas no effect on fish that have yet to be logged in the Fish Guide.","DescriptionJSON":null,"EffectRange":0,"ID":300,"IconHD":"/i/001000/001108_hr1.png","Name":"Release","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":36,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":8,"CooldownGroup":0,"Description":"Tread quietly, enabling you to avoid enemies up to four levels above your own.","DescriptionJSON":null,"EffectRange":0,"ID":305,"IconHD":"/i/001000/001134_hr1.png","Name":"Sneak","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":38,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":0,"Description":"Lights up the tip of your fishing rod.","DescriptionJSON":null,"EffectRange":0,"ID":2135,"IconHD":"/i/001000/001107_hr1.png","Name":"Cast Light","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":31,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":36,"CooldownGroup":0,"Description":"Adds extra hooks to the line, making it possible to land normally uncatchable fish and items.","DescriptionJSON":null,"EffectRange":0,"ID":4100,"IconHD":"/i/001000/001109_hr1.png","Name":"Snagging","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":0,"Description":"Readies the catch to retain as a collectable.","DescriptionJSON":null,"EffectRange":0,"ID":4101,"IconHD":"/i/001000/001110_hr1.png","Name":"Collect","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":44,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Increases the chance of landing a large-sized fish by 50% while reducing Hook efficiency by 40%.\n\nDuration: 60s\n\n\n\nCancels current mooching opportunity.","DescriptionJSON":null,"EffectRange":0,"ID":4102,"IconHD":"/i/001000/001113_hr1.png","Name":"Patience","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Negates the Inefficient Hooking status. Has no effect on certain fish with a weak bite.","DescriptionJSON":null,"EffectRange":0,"ID":4103,"IconHD":"/i/001000/001115_hr1.png","Name":"Powerful Hookset","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":50,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":5,"CooldownGroup":0,"Description":"Reduces the amount of time for the next fish to bite.\n\n\n\nCancels current mooching opportunity.","DescriptionJSON":null,"EffectRange":0,"ID":4104,"IconHD":"/i/001000/001111_hr1.png","Name":"Chum","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":763,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":57,"CooldownGroup":0,"Description":"Opens your five senses to the surrounding environment, detecting fish in a given body of water without regard for their normal hours of activity.\n\nHas no effect on certain fish.\n\nDuration: 60s\n\n\n\nCancels current mooching opportunity.","DescriptionJSON":null,"EffectRange":0,"ID":4105,"IconHD":"/i/001000/001112_hr1.png","Name":"Fish Eyes","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":550,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":0,"Description":"Increases the chance of landing a large-sized fish by 80% while reducing Hook efficiency by 75%. Also increases the likelihood of catching an average-sized fish of greater length.\n\nDuration: 145s\n\n\n\nCancels current mooching opportunity.","DescriptionJSON":null,"EffectRange":0,"ID":4106,"IconHD":"/i/001000/001114_hr1.png","Name":"Patience II","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":560,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Negates the Inefficient Hooking status. Has no effect on certain fish with a strong bite.","DescriptionJSON":null,"EffectRange":0,"ID":4179,"IconHD":"/i/001000/001116_hr1.png","Name":"Precision Hookset","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":50,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":71,"CooldownGroup":0,"Description":"Prevents hooking the same fish you just caught. Has no effect on some fish.\n\nDuration: 15s\n\nEffect ends after hooking a fish. Cancels current mooching opportunity.\n\nOverwrites the effect of Identical Cast upon execution.","DescriptionJSON":null,"EffectRange":0,"ID":4595,"IconHD":"/i/001000/001123_hr1.png","Name":"Surface Slap","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":1803,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":79,"CooldownGroup":0,"Description":"Ensures you hook the same fish you previously caught. Has no effect on some fish.\n\nDuration: 15s\n\nEffect ends after hooking a fish, and cannot be used for consecutive casts. Cancels current mooching opportunity.\n\nEffect is canceled if the same fish cannot be caught at your current fishing location.\n\nOverwrites the effect of Surface Slap upon execution.","DescriptionJSON":null,"EffectRange":0,"ID":4596,"IconHD":"/i/001000/001124_hr1.png","Name":"Identical Cast","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":350,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":1804,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":61,"CooldownGroup":58,"Description":"Attempts to catch a fish using your gig, increasing the wariness of others nearby.\n\nCatching more fish in a single attempt results in a smaller increase to wariness.","DescriptionJSON":null,"EffectRange":0,"ID":7632,"IconHD":"/i/001000/001119_hr1.png","Name":"Gig","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":10,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":61,"CooldownGroup":0,"Description":"Surveys the seas to locate teeming waters. Activates automatically when class is changed to fisher.","DescriptionJSON":null,"EffectRange":0,"ID":7903,"IconHD":"/i/001000/001125_hr1.png","Name":"Fathom","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":61,"CooldownGroup":66,"Description":"Surveys the seas to locate the nearest teeming waters within skill range. Can only be executed while Fathom is active.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":7904,"IconHD":"/i/001000/001126_hr1.png","Name":"Shark Eye","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":32,"SecondaryCostValue":1166,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":66,"Description":"Surveys the landscape to locate the highest-level teeming waters within skill range. Can only be executed while Fathom is active.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":7905,"IconHD":"/i/001000/001127_hr1.png","Name":"Shark Eye II","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":32,"SecondaryCostValue":1166,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":63,"CooldownGroup":0,"Description":"Prevents the same fish you just caught from appearing again. Has no effect on some fish.","DescriptionJSON":null,"EffectRange":0,"ID":7906,"IconHD":"/i/001000/001128_hr1.png","Name":"Veteran Trade","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":69,"CooldownGroup":0,"Description":"Increases the chance of landing a large-sized fish on your next spearfishing attempt.\n\nChance of landing a large catch increases based on your perception rating.","DescriptionJSON":null,"EffectRange":0,"ID":7909,"IconHD":"/i/001000/001131_hr1.png","Name":"Nature's Bounty","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":100,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":67,"CooldownGroup":0,"Description":"Occasionally discovers treasure maps while spearfishing.","DescriptionJSON":null,"EffectRange":0,"ID":7910,"IconHD":"/i/001000/001132_hr1.png","Name":"Salvage","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":44,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":65,"CooldownGroup":0,"Description":"Further surveys the seas to uncover the nearest swimming shadows within skill range.","DescriptionJSON":null,"EffectRange":0,"ID":7911,"IconHD":"/i/001000/001133_hr1.png","Name":"Truth of Oceans","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":22,"CooldownGroup":0,"Description":"Selects fish to be automatically released upon catching them at a given fishing hole.\n\nSettings are reset upon putting away rod.\n\nHas no effect on fish that have yet to be logged in the Fish Guide.","DescriptionJSON":null,"EffectRange":0,"ID":19264,"IconHD":"/i/001000/001135_hr1.png","Name":"Release List","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":0,"Description":"Restores 150 GP.\n\nAngler's Art Cost: 3","DescriptionJSON":null,"EffectRange":0,"ID":26804,"IconHD":"/i/001000/001139_hr1.png","Name":"Thaliak's Favor","PreservesCombo":0,"PrimaryCostType":80,"PrimaryCostValue":3,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":48,"CooldownGroup":0,"Description":"Allows the execution of Mooch even with average-sized fish.\n\nDuration: 145s\n\nAngler's Art Cost: 5\n\nAction has no effect on fish caught prior to execution.","DescriptionJSON":null,"EffectRange":0,"ID":26805,"IconHD":"/i/001000/001136_hr1.png","Name":"Makeshift Bait","PreservesCombo":0,"PrimaryCostType":80,"PrimaryCostValue":5,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":81,"CooldownGroup":0,"Description":"Guarantees the next catch will be a large-sized fish.\n\nEffect ends after hooking a fish. Cancels current mooching opportunity.","DescriptionJSON":null,"EffectRange":0,"ID":26806,"IconHD":"/i/001000/001137_hr1.png","Name":"Prize Catch","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":200,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":2780,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":64,"CooldownGroup":0,"Description":"Sharpens your vision, making fish easier to target.\n\nAngler's Art Cost: 2\n\nEffect ends when you finish spearfishing at your present location.","DescriptionJSON":null,"EffectRange":0,"ID":26870,"IconHD":"/i/001000/001140_hr1.png","Name":"Vital Sight","PreservesCombo":0,"PrimaryCostType":80,"PrimaryCostValue":2,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":75,"CooldownGroup":0,"Description":"Holds your breath and reduces the wariness of nearby fish.\n\nCannot be executed when wariness exceeds a certain threshold.","DescriptionJSON":null,"EffectRange":0,"ID":26871,"IconHD":"/i/001000/001141_hr1.png","Name":"Baited Breath","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":300,"Range":0,"Recast100ms":0,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":85,"CooldownGroup":58,"Description":"Electrifies the water and captures all fish present in your field of vision.\n\nWariness of other nearby fish increases with the number of fish caught.\n\nRequires a catch counter of 10 to execute. Can only be executed once per spearfishing attempt.","DescriptionJSON":null,"EffectRange":0,"ID":26872,"IconHD":"/i/001000/001142_hr1.png","Name":"Electric Current","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":78,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":6,"Name":"DoL Ability","Name_de":"Talent (Sammeln)","Name_en":"DoL Ability","Name_fr":"Aptitude de récolte","Name_ja":"採集アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":90,"CooldownGroup":0,"Description":"Hooks three or more fish in a single cast. Yield is determined by fish type and your gathering rating. Some fish cannot be triple hooked.","DescriptionJSON":null,"EffectRange":0,"ID":27523,"IconHD":"/i/001000/001138_hr1.png","Name":"Triple Hook","PreservesCombo":0,"PrimaryCostType":7,"PrimaryCostValue":700,"Range":0,"Recast100ms":0,"SecondaryCostType":50,"SecondaryCostValue":0,"TargetArea":0}],"19":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":21,"Description":"Take all damage intended for another party member as long as said member remains within 10 yalms.\n\nDoes not activate with certain attacks.\n\nDuration: 12s\n\nOath Gauge Cost: 50","DescriptionJSON":null,"EffectRange":0,"ID":27,"IconHD":"/i/002000/002501_hr1.png","Name":"Cover","PreservesCombo":1,"PrimaryCostType":41,"PrimaryCostValue":50,"Range":10,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":6,"Description":"Delivers an attack with a potency of 270.
\nAdditional Effect: Restores MP","DescriptionJSON":null,"EffectRange":0,"ID":29,"IconHD":"/i/002000/002503_hr1.png","Name":"Spirits Within","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":300,"SecondaryCostType":63,"SecondaryCostValue":415,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":25,"Description":"Renders you impervious to most attacks.\n\nDuration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":30,"IconHD":"/i/002000/002502_hr1.png","Name":"Hallowed Ground","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":4200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":15,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Riot Blade\n\nCombo Potency: 250\n\nCombo Bonus: Damage over time\n\nPotency: 65\n\nDuration: 21s\n\nDamage over time effect cannot be stacked with that of Blade of Valor.","DescriptionJSON":null,"EffectRange":0,"ID":3538,"IconHD":"/i/002000/002506_hr1.png","Name":"Goring Blade","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":15,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 130 .\n\nCombo Action: Riot Blade\n\nCombo Potency: 420
\nCombo Bonus: Grants 3 stacks of Sword Oath
\n
\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":3539,"IconHD":"/i/002000/002507_hr1.png","Name":"Royal Authority","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":56,"CooldownGroup":15,"Description":"Upon HP recovery via healing magic cast by self or a party member, a protective barrier is cast on all party members within a radius of 15 yalms.\n\nDuration: 30s\n\nBarrier Effect: Prevents damage up to 10% of your maximum HP\n\nDuration: 30s Additional Effect: Restore target's HP
\n
\nCure Potency: 400
\n
\n Effect ends upon casting barrier on self and nearby party members.","DescriptionJSON":null,"EffectRange":0,"ID":3540,"IconHD":"/i/002000/002508_hr1.png","Name":"Divine Veil","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":58,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 1,000\n\nAdditional Effect: Restores to self 50% of HP restored to target if target is a party member","DescriptionJSON":null,"EffectRange":0,"ID":3541,"IconHD":"/i/002000/002509_hr1.png","Name":"Clemency","PreservesCombo":1,"PrimaryCostType":3,"PrimaryCostValue":40,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":1,"Description":"Block incoming attacks.\n\nDuration: 6 s\n\nOath Gauge Cost: 50","DescriptionJSON":null,"EffectRange":0,"ID":3542,"IconHD":"/i/002000/002510_hr1.png","Name":"Sheltron","PreservesCombo":1,"PrimaryCostType":41,"PrimaryCostValue":50,"Range":0,"Recast100ms":50,"SecondaryCostType":63,"SecondaryCostValue":412,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":62,"CooldownGroup":2,"Description":"Reduces target party member's damage taken by 10%.\n\nDuration: 8 s\n\nAdditional Effect: Increases damage reduction by an additional 10% if Rampart or Sentinel are active Additional Effect: Grants Knight's Resolve to target
\n
\nKnight's Resolve Effect: Reduces damage taken by 10%
\n
\nDuration: 4s
\n
\nAdditional Effect: Grants Knight's Benediction to target
\n
\nKnight's Benediction Effect: Gradually restores HP
\n
\nCure Potency: 250
\n
\nDuration: 12s
\n
\n Oath Gauge Cost: 50","DescriptionJSON":null,"EffectRange":0,"ID":7382,"IconHD":"/i/002000/002512_hr1.png","Name":"Intervention","PreservesCombo":1,"PrimaryCostType":41,"PrimaryCostValue":50,"Range":30,"Recast100ms":100,"SecondaryCostType":62,"SecondaryCostValue":209,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":12,"Description":"Deals unaspected damage with a potency of 400.\n\nAdditional Effect: Grants 5 stacks of Requiescat\n\nRequiescat Effect: Increases the potency of Holy Spirit and Holy Circle and spells will require no cast time\n\nDuration: 30s
\nAdditional Effect: Grants Blade of Faith Ready when the effect of Requiescat ends
\n
\nDuration: 30s
\n
\n
\n
\n※Confiteor changes to Blade of Faith while under the effect of Blade of Faith Ready.","DescriptionJSON":null,"EffectRange":0,"ID":7383,"IconHD":"/i/002000/002513_hr1.png","Name":"Requiescat","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 270 .
\nRequiescat Potency:
\nAdditional Effect: Restores own HP
\n
\nCure Potency: 400","DescriptionJSON":null,"EffectRange":0,"ID":7384,"IconHD":"/i/002000/002514_hr1.png","Name":"Holy Spirit","PreservesCombo":1,"PrimaryCostType":3,"PrimaryCostValue":20,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":7,"ClassJobLevel":70,"CooldownGroup":22,"Description":"Increases block rate to 100% and creates a designated area in a cone behind you in which party members will only suffer 85% of all damage inflicted.\n\nDuration: 18s\n\nEffect ends upon using another action or moving (including facing a different direction).\n\nCancels auto-attack upon execution.","DescriptionJSON":null,"EffectRange":8,"ID":7385,"IconHD":"/i/002000/002515_hr1.png","Name":"Passage of Arms","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7381,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby enemies.\n\nCombo Action: Total Eclipse\n\nCombo Potency: 170
\nCombo Bonus: Restores MP","DescriptionJSON":null,"EffectRange":5,"ID":16457,"IconHD":"/i/002000/002516_hr1.png","Name":"Prominence","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":2,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 130 to all nearby enemies.\n\nRequiescat Potency: 300
\nAdditional Effect: Restores own HP
\n
\nCure Potency: 400","DescriptionJSON":null,"EffectRange":5,"ID":16458,"IconHD":"/i/002000/002517_hr1.png","Name":"Holy Circle","PreservesCombo":1,"PrimaryCostType":3,"PrimaryCostValue":20,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 900 to target and all enemies nearby it. Additional Effect: Restores own HP
\n
\nCure Potency: 400
\n
\n Can only be executed while under the effect of Requiescat. Effect fades upon execution.","DescriptionJSON":null,"EffectRange":5,"ID":16459,"IconHD":"/i/002000/002518_hr1.png","Name":"Confiteor","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":20,"Range":25,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1368,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 420 .\n\nAdditional Effect: Restores MP\n\nCan only be executed while under the effect of Sword Oath.","DescriptionJSON":null,"EffectRange":0,"ID":16460,"IconHD":"/i/002000/002519_hr1.png","Name":"Atonement","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1902,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":74,"CooldownGroup":10,"Description":"Rushes target and delivers an attack with a potency of 150.\n\nMaximum Charges: 2\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":16461,"IconHD":"/i/002000/002520_hr1.png","Name":"Intervene","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":82,"CooldownGroup":3,"Description":"Block incoming attacks.\n\nDuration: 8s\n\nAdditional Effect: Grants Knight's Resolve\n\nKnight's Resolve Effect: Reduces damage taken by 15%\n\nDuration: 4s\n\nAdditional Effect: Grants Knight's Benediction\n\nKnight's Benediction Effect: Gradually restores HP\n\nCure Potency: 250\n\nDuration: 12s\n\nOath Gauge Cost: 50","DescriptionJSON":null,"EffectRange":0,"ID":25746,"IconHD":"/i/002000/002950_hr1.png","Name":"Holy Sheltron","PreservesCombo":1,"PrimaryCostType":41,"PrimaryCostValue":50,"Range":0,"Recast100ms":50,"SecondaryCostType":62,"SecondaryCostValue":412,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":86,"CooldownGroup":6,"Description":"Delivers an attack to target and all enemies nearby it with a potency of 340 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Restores MP","DescriptionJSON":null,"EffectRange":5,"ID":25747,"IconHD":"/i/002000/002951_hr1.png","Name":"Expiacion","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 420 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Restores own HP\n\nCure Potency: 400\n\nAdditional Effect: Restores MP\n\nCan only be executed while under the effect of Blade of Faith Ready, granted when the effect of Requiescat ends.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25748,"IconHD":"/i/002000/002952_hr1.png","Name":"Blade of Faith","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":3019,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":25748,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 500 for the first enemy, and 50% less for all remaining enemies.\n\nCombo Action: Blade of Faith\n\nCombo Bonus: Restores MP\n\nAdditional Effect: Restores own HP\n\nCure Potency: 400\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25749,"IconHD":"/i/002000/002953_hr1.png","Name":"Blade of Truth","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":25,"SecondaryCostType":58,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":25749,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 580 for the first enemy, and 50% less for all remaining enemies.\n\nCombo Action: Blade of Truth\n\nCombo Bonus: Restores MP\n\nCombo Bonus: Damage over time\n\nPotency: 80 for the first enemy, and 50% less for all remaining enemies\n\nDuration: 21s\n\nAdditional Effect: Restores own HP\n\nCure Potency: 400\n\nDamage over time effect cannot be stacked with that of Goring Blade.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25750,"IconHD":"/i/002000/002954_hr1.png","Name":"Blade of Valor","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":25,"SecondaryCostType":58,"SecondaryCostValue":0,"TargetArea":0}],"20":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":11,"Description":"Grants 3 stacks of Perfect Balance, each stack allowing the execution of a weaponskill that requires a certain form, without being in that form.\n\nDuration: 20s Additional Effect: Grants Opo-opo Chakra, Coeurl Chakra, or Raptor Chakra depending on the form required by actions executed
\n
\n Maximum Charges: 2 Can only be executed while in combat and when not under the effect of any Beast Chakra.","DescriptionJSON":null,"EffectRange":0,"ID":69,"IconHD":"/i/000000/000217_hr1.png","Name":"Perfect Balance","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":400,"SecondaryCostType":132,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 130 to all nearby enemies.\n\nCan only be executed when in coeurl form.\n\nAdditional Effect: Changes form to opo-opo\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":5,"ID":70,"IconHD":"/i/002000/002529_hr1.png","Name":"Rockbreaker","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":109,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 320 .\n\nOpo-opo Form Bonus: Grants Leaden Fist\n\nDuration: 30s\n\nAdditional Effect: Changes form to raptor\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":74,"IconHD":"/i/002000/002528_hr1.png","Name":"Dragon Kick","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack to target and all enemies nearby it with a potency of 850 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form\n\nDuration: 30s\n\nAny additional effects associated with the executed action will also be applied.\n\nCan only be executed while under the effect of Lunar Nadi and Solar Nadi, as well as three Beast Chakra.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":3543,"IconHD":"/i/002000/002531_hr1.png","Name":"Tornado Kick","PreservesCombo":1,"PrimaryCostType":79,"PrimaryCostValue":3,"Range":"-1","Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":513,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies with a potency of 600 for the first enemy, and 70% less for all remaining enemies.\n\nAdditional Effect: Opens the Lunar Nadi\n\nAdditional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form\n\nDuration: 30s\n\nAny additional effects associated with the executed action will also be applied.\n\nCan only be executed while under the effect of three of the same Beast Chakra.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":3545,"IconHD":"/i/002000/002533_hr1.png","Name":"Elixir Field","PreservesCombo":1,"PrimaryCostType":79,"PrimaryCostValue":4,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Opens a chakra. Up to five chakra can be opened at once.\n\nOpens all five chakra when used outside of combat.\n\nShares a recast timer with all other weaponskills.\n\n\n\n※Action changes to The Forbidden Chakra when all five chakra are open.","DescriptionJSON":null,"EffectRange":0,"ID":3546,"IconHD":"/i/002000/002534_hr1.png","Name":"Meditation","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":10,"SecondaryCostType":121,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 340 .\n\nCan only be executed while in combat and under the effect of the Fifth Chakra. The five chakra close upon execution.\n\nShares a recast timer with Enlightenment .\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":3547,"IconHD":"/i/002000/002535_hr1.png","Name":"the Forbidden Chakra","PreservesCombo":1,"PrimaryCostType":28,"PrimaryCostValue":5,"Range":"-1","Recast100ms":10,"SecondaryCostType":42,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":52,"CooldownGroup":58,"Description":"Grants Formless Fist to self, allowing the execution of a weaponskill that requires a certain form, without being in that form.\n\nDuration: 30s\n\nAny additional effects associated with the executed action will also be applied.","DescriptionJSON":null,"EffectRange":0,"ID":4262,"IconHD":"/i/002000/002536_hr1.png","Name":"Form Shift","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":64,"CooldownGroup":15,"Description":"Grants 3 stacks of Riddle of Earth, each stack reducing damage taken by 20%.\n\nDuration: 10s\n\nMaximum Charges: 3\n\nEffect ends when time expires or upon execution of three weaponskills.","DescriptionJSON":null,"EffectRange":0,"ID":7394,"IconHD":"/i/002000/002537_hr1.png","Name":"Riddle of Earth","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":12,"Description":"Increases damage dealt by 15%.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":7395,"IconHD":"/i/002000/002541_hr1.png","Name":"Riddle of Fire","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":70,"CooldownGroup":20,"Description":"Grants Brotherhood and Meditative Brotherhood to self and all nearby party members.\n\nBrotherhood Effect: Increases damage dealt by 5%\n\nMeditative Brotherhood Effect: 20% chance you open a chakra when party members under this effect successfully land a weaponskill or cast a spell
\n
\nChance is 100% when you successfully land a weaponskill or cast a spell while under the effect of Meditative Brotherhood. Duration: 15s","DescriptionJSON":null,"EffectRange":15,"ID":7396,"IconHD":"/i/002000/002542_hr1.png","Name":"Brotherhood","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":16147,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 540.\n\nCombo Action: Savage Claw
\nCombo Bonus: Grants Ready to Gouge
\n
\nDuration: 10s
\n
\nEffect of Ready to Gouge ends upon execution of any weaponskill. ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16150,"IconHD":"/i/003000/003414_hr1.png","Name":"Wicked Talon","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":15,"SecondaryCostValue":2,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 120 to all nearby enemies.\n\nCan only be executed when in raptor form.\n\nAdditional Effect: Grants Disciplined Fist\n\nDisciplined Fist Effect: Increases damage dealt by 15 %\n\nDuration: 15s\n\nAdditional Effect: Changes form to coeurl\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":5,"ID":16473,"IconHD":"/i/002000/002544_hr1.png","Name":"Four-point Fury","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":108,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":74,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 170 to all enemies in a straight line before you.\n\nCan only be executed while in combat and under the effect of the Fifth Chakra. The five chakra close upon execution.\n\nShares a recast timer with The Forbidden Chakra.","DescriptionJSON":null,"EffectRange":10,"ID":16474,"IconHD":"/i/002000/002545_hr1.png","Name":"Enlightenment","PreservesCombo":1,"PrimaryCostType":28,"PrimaryCostValue":5,"Range":10,"Recast100ms":10,"SecondaryCostType":42,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":78,"CooldownGroup":13,"Description":"Extends the duration of Disciplined Fist and your present form to maximum and halts their expiration.\n\nDuration: 30s\n\nCancels auto-attack upon execution. Effect ends upon using another action or moving (including facing a different direction).\n\nTriggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.","DescriptionJSON":null,"EffectRange":0,"ID":16475,"IconHD":"/i/002000/002546_hr1.png","Name":"Anatman","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 550 .\n\nAdditional Effect: Increases movement speed\n\nDuration: 5s\n\nThis weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.","DescriptionJSON":null,"EffectRange":0,"ID":16476,"IconHD":"/i/002000/002547_hr1.png","Name":"Six-sided Star","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":50,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":10,"Description":"Rush to a targeted enemy's or party member's location.\n\nMaximum Charges: 3 Cannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":25762,"IconHD":"/i/002000/002975_hr1.png","Name":"Thunderclap","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":40,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 100 to all enemies in a straight line before you.\n\nCan only be executed while in combat and under the effect of the Fifth Chakra. The five chakra close upon execution.\n\nShares a recast timer with The Forbidden Chakra .","DescriptionJSON":null,"EffectRange":10,"ID":25763,"IconHD":"/i/000000/000207_hr1.png","Name":"Howling Fist","PreservesCombo":1,"PrimaryCostType":28,"PrimaryCostValue":5,"Range":10,"Recast100ms":10,"SecondaryCostType":122,"SecondaryCostValue":429,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Strike the enemy with a technique fueled by the power of your Beast Chakra.\n\nThe technique used is determined by the number of different types of Beast Chakra opened.\n\n1 Beast Chakra Type: Elixir Field\n\n2 Beast Chakra Types: Celestial Revolution\n\n3 Beast Chakra Types: Rising Phoenix 3 Beast Chakra and Both Nadi: Phantom Rush","DescriptionJSON":null,"EffectRange":0,"ID":25764,"IconHD":"/i/002000/002976_hr1.png","Name":"Masterful Blitz","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":73,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 450.\n\nAdditional Effect: Opens the Lunar Nadi\n\nIf the Lunar Nadi is already open, opens the Solar Nadi instead.\n\nAdditional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form\n\nDuration: 30s\n\nAny additional effects associated with the executed action will also be applied.\n\nCan only be executed while under the effect of three Beast Chakra.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25765,"IconHD":"/i/002000/002977_hr1.png","Name":"Celestial Revolution","PreservesCombo":0,"PrimaryCostType":79,"PrimaryCostValue":1,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":72,"CooldownGroup":17,"Description":"Reduces auto-attack delay by 50%.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":25766,"IconHD":"/i/002000/002978_hr1.png","Name":"Riddle of Wind","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 110 to all nearby enemies.\n\nOpo-opo Form Bonus: Guarantees a critical hit\n\nAdditional Effect: Changes form to raptor\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":5,"ID":25767,"IconHD":"/i/002000/002979_hr1.png","Name":"Shadow of the Destroyer","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":86,"CooldownGroup":58,"Description":"Deals physical fire damage to all nearby enemies with a potency of 700 for the first enemy, and 70% less for all remaining enemies.\n\nAdditional Effect: Opens the Solar Nadi\n\nAdditional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form\n\nDuration: 30s\n\nAny additional effects associated with the executed action will also be applied.\n\nCan only be executed while under the effect of three distinct Beast Chakra.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25768,"IconHD":"/i/002000/002980_hr1.png","Name":"Rising Phoenix","PreservesCombo":0,"PrimaryCostType":79,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Delivers an attack to target and all enemies nearby it with a potency of 1,150 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form\n\nDuration: 30s\n\nAny additional effects associated with the executed action will also be applied.\n\nCan only be executed while under the effect of Lunar Nadi and Solar Nadi, as well as three Beast Chakra.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25769,"IconHD":"/i/002000/002981_hr1.png","Name":"Phantom Rush","PreservesCombo":0,"PrimaryCostType":79,"PrimaryCostValue":3,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies with a potency of 600 for the first enemy, and 70% less for all remaining enemies.\n\nAdditional Effect: Opens the Solar Nadi\n\nAdditional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form\n\nDuration: 30s\n\nAny additional effects associated with the executed action will also be applied.\n\nCan only be executed while under the effect of three distinct Beast Chakra.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25882,"IconHD":"/i/002000/002548_hr1.png","Name":"Flint Strike","PreservesCombo":0,"PrimaryCostType":79,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":512,"TargetArea":0}],"21":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 330.\n\nBeast Gauge Cost: 50","DescriptionJSON":null,"EffectRange":0,"ID":49,"IconHD":"/i/002000/002553_hr1.png","Name":"Inner Beast","PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":50,"Range":"-1","Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":265,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 170 to all nearby enemies.\n\nBeast Gauge Cost: 50","DescriptionJSON":null,"EffectRange":5,"ID":51,"IconHD":"/i/002000/002552_hr1.png","Name":"Steel Cyclone","PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":50,"Range":0,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":266,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":20,"Description":"Increases Beast Gauge by 50. Additional Effect: Grants Nascent Chaos
\n
\nDuration: 30s
\n
\n Maximum Charges: 2\n\nCan only be executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":52,"IconHD":"/i/002000/002555_hr1.png","Name":"Infuriate","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":42,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 460.\n\nBeast Gauge Cost: 50
\n
\n
\n※Action changes to Inner Chaos while under the effect of Nascent Chaos.","DescriptionJSON":null,"EffectRange":0,"ID":3549,"IconHD":"/i/002000/002557_hr1.png","Name":"Fell Cleave","PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":50,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies with a potency of 200.\n\nBeast Gauge Cost: 50
\n
\n
\n※Action changes to Chaotic Cyclone while under the effect of Nascent Chaos.","DescriptionJSON":null,"EffectRange":5,"ID":3550,"IconHD":"/i/002000/002558_hr1.png","Name":"Decimate","PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":50,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":56,"CooldownGroup":4,"Description":"Reduces damage taken by 10%.\n\nDuration: 6s\n\nAdditional Effect: Restores HP with each weaponskill successfully delivered\n\nCure Potency: 400
\nShares a recast timer with Nascent Flash.","DescriptionJSON":null,"EffectRange":0,"ID":3551,"IconHD":"/i/002000/002559_hr1.png","Name":"Raw Intuition","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":250,"SecondaryCostType":63,"SecondaryCostValue":418,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":58,"CooldownGroup":15,"Description":"Restores own HP.\n\nCure Potency: 1,200
\nAdditional Effect: Gradually restores HP
\n
\nCure Potency: 200
\n
\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":3552,"IconHD":"/i/002000/002560_hr1.png","Name":"Equilibrium","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":62,"CooldownGroup":10,"Description":"Rushes target and delivers an attack with a potency of 150.\n\nMaximum Charges: 3 Cannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":7386,"IconHD":"/i/002000/002561_hr1.png","Name":"Onslaught","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":64,"CooldownGroup":6,"Description":"Delivers an attack with a potency of 350.
\nShares a recast timer with Orogeny.","DescriptionJSON":null,"EffectRange":0,"ID":7387,"IconHD":"/i/002000/002562_hr1.png","Name":"Upheaval","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":68,"CooldownGroup":18,"Description":"Creates a barrier around self and all nearby party members that absorbs damage totaling 15% of maximum HP.\n\nDispels Thrill of Battle, Vengeance, and Bloodwhetting , increasing damage absorbed by 2% for each effect removed. \n\nDuration: 15s
\nAdditional Effect: Restores own HP and the HP of all nearby party members
\n
\nCure Potency: 300","DescriptionJSON":null,"EffectRange":15,"ID":7388,"IconHD":"/i/002000/002563_hr1.png","Name":"Shake It Off","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":12,"Description":"Grants 3 stacks of Inner Release, each stack allowing the use of Fell Cleave or Decimate without cost and guaranteeing they are critical and direct hits.\n\nAdditional Effect: Grants Inner Strength, nullifying Stun, Sleep, Bind, Heavy, and most knockback and draw-in effects\n\nDuration: 15s\n\nAdditional Effect: Extends Surging Tempest duration by 10s to a maximum of 60s
\nAdditional Effect: Grants Primal Rend Ready
\n
\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":7389,"IconHD":"/i/002000/002564_hr1.png","Name":"Inner Release","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":70,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.\n\n0 Steps: 350\n\n1 Step: 540\n\n2 Steps: 720\n\n3 Steps: 900\n\n4 Steps: 1,200 Step Bonus: Grants Technical Finish and Esprit to self and party members Damage bonus of Technical Finish varies with number of successful steps.\n\n1 Step: 1%\n\n2 Steps: 2%\n\n3 Steps: 3%\n\n4 Steps: 5%\n\nDuration: 20s Additional Effect: Grants Flourishing Finish
\n
\nDuration: 30s
\n
\n Recast timer cannot be affected by status effects or gear attributes. ※Action changes to Tillana upon execution.
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":16004,"IconHD":"/i/003000/003474_hr1.png","Name":"Technical Finish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":4,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":70,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.\n\n0 Steps: 350\n\n1 Step: 540\n\n2 Steps: 720\n\n3 Steps: 900\n\n4 Steps: 1,200 Step Bonus: Grants Technical Finish and Esprit to self and party members Damage bonus of Technical Finish varies with number of successful steps.\n\n1 Step: 1%\n\n2 Steps: 2%\n\n3 Steps: 3%\n\n4 Steps: 5%\n\nDuration: 20s Additional Effect: Grants Flourishing Finish
\n
\nDuration: 30s
\n
\n Recast timer cannot be affected by status effects or gear attributes. ※Action changes to Tillana upon execution.
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":16193,"IconHD":"/i/003000/003474_hr1.png","Name":"Single Technical Finish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":5,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":41,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby enemies.\n\nCombo Action: Overpower\n\nCombo Potency: 150\n\nCombo Bonus: Grants Surging Tempest, increasing damage dealt by 10%\n\nDuration: 30s\n\nExtends Surging Tempest duration by 30s to a maximum of 60s.
\nCombo Bonus: Increases Beast Gauge by 20","DescriptionJSON":null,"EffectRange":5,"ID":16462,"IconHD":"/i/002000/002565_hr1.png","Name":"Mythril Tempest","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Delivers a critical direct hit with a potency of 320 to all nearby enemies.\n\nAdditional Effect: Reduces the recast time of Infuriate by 5 seconds\n\nBeast Gauge Cost: 50\n\nCan only be executed while under the effect of Nascent Chaos. Effect fades upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":16463,"IconHD":"/i/002000/002566_hr1.png","Name":"Chaotic Cyclone","PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":50,"Range":0,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1897,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":4,"Description":"Grants Nascent Flash to self and Nascent Glint to target party member.\n\nNascent Flash Effect: Restores HP with each weaponskill successfully delivered\n\nCure Potency: 400\n\nNascent Glint Effect: Restores HP equaling 100% of that recovered by Nascent Flash while also reducing damage taken by 10%\n\nDuration: 8 s Additional Effect: Grants Stem the Flow to target, reducing damage taken by 10%
\n
\nDuration: 4s
\n
\nAdditional Effect: Grants Stem the Tide to target, nullifying damage equivalent to a heal of 400 potency
\n
\nDuration: 20s
\n
\n Shares a recast timer with Bloodwhetting .","DescriptionJSON":null,"EffectRange":0,"ID":16464,"IconHD":"/i/002000/002567_hr1.png","Name":"Nascent Flash","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":250,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Delivers a critical direct hit with a potency of 650.\n\nAdditional Effect: Reduces the recast time of Infuriate by 5 seconds\n\nBeast Gauge Cost: 50\n\nCan only be executed while under the effect of Nascent Chaos. Effect fades upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16465,"IconHD":"/i/002000/002568_hr1.png","Name":"Inner Chaos","PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":50,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1897,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":82,"CooldownGroup":4,"Description":"Reduces damage taken by 10%.\n\nDuration: 8s\n\nAdditional Effect: Restores HP with each weaponskill successfully delivered\n\nCure Potency: 400\n\nAdditional Effect: Grants Stem the Flow\n\nStem the Flow Effect: Reduces damage taken by 10%\n\nDuration: 4s\n\nAdditional Effect: Grants Stem the Tide\n\nStem the Tide Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 400 potency\n\nDuration: 20s\n\nShares a recast timer with Nascent Flash.","DescriptionJSON":null,"EffectRange":0,"ID":25751,"IconHD":"/i/002000/002569_hr1.png","Name":"Bloodwhetting","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":250,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":86,"CooldownGroup":6,"Description":"Delivers an attack with a potency of 150 to all nearby enemies.\n\nShares a recast timer with Upheaval.","DescriptionJSON":null,"EffectRange":5,"ID":25752,"IconHD":"/i/002000/002570_hr1.png","Name":"Orogeny","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":2,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Jumps to the target and delivers a critical direct hit to target and all enemies nearby it with a potency of 700 for the first enemy, and 70% less for all remaining enemies.\n\nStacks of Inner Release are not consumed upon execution.\n\nCan only be executed while under the effect of Primal Rend Ready, granted by Inner Release.\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":5,"ID":25753,"IconHD":"/i/002000/002571_hr1.png","Name":"Primal Rend","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2624,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"22":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 110 to all enemies in a straight line before you.
\n
\n
\n※Action changes to Draconian Fury when under the effect of Draconian Fire.","DescriptionJSON":null,"EffectRange":10,"ID":86,"IconHD":"/i/000000/000306_hr1.png","Name":"Doom Spike","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":10,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":5,"Description":"Delivers a jumping attack with a potency of 320 . Returns you to your original position after the attack is made. Additional Effect: Grants Dive Ready
\n
\nDuration: 15s
\n
\n Cannot be executed while bound.
\n
\n
\n※Action changes to Mirage Dive while under the effect of Dive Ready.","DescriptionJSON":null,"EffectRange":0,"ID":92,"IconHD":"/i/002000/002576_hr1.png","Name":"Jump","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":300,"SecondaryCostType":63,"SecondaryCostValue":275,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":4,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":6,"Description":"Executes a jump to a location 15 yalms behind you.\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":94,"IconHD":"/i/002000/002577_hr1.png","Name":"Elusive Jump","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":20,"Description":"Delivers a jumping attack with a potency of 250 . Maximum Charges: 2
\n
\n Cannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":95,"IconHD":"/i/002000/002580_hr1.png","Name":"Spineshatter Dive","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":2,"ClassJobLevel":50,"CooldownGroup":21,"Description":"Delivers a jumping fire-based attack with a potency of 300 to target and all enemies nearby it.\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":5,"ID":96,"IconHD":"/i/002000/002578_hr1.png","Name":"Dragonfire Dive","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Thumpity thump thump, thumpity thump thump...","DescriptionJSON":null,"EffectRange":0,"ID":2272,"IconHD":"/i/002000/002914_hr1.png","Name":"Rabbit Medium","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":0,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":56,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 260.\n\n300 when executed from a target's flank.\n\nCan only be executed while under the effect of Fang and Claw Bared, granted by Heavens' Thrust .","DescriptionJSON":null,"EffectRange":0,"ID":3554,"IconHD":"/i/002000/002582_hr1.png","Name":"Fang and Claw","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":802,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":60,"CooldownGroup":8,"Description":"Delivers an attack to all enemies in a straight line before you with a potency of 260 for the first enemy, and 30% less for all remaining enemies.
\nAdditional Effect: Grants Life of the Dragon while under the full gaze of the first brood
\n
\n
\n
\n※Action changes to Nastrond while under the effect of Life of the Dragon.","DescriptionJSON":null,"EffectRange":15,"ID":3555,"IconHD":"/i/002000/002583_hr1.png","Name":"Geirskogul","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":58,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 260.\n\n300 when executed from a target's rear.\n\nCan only be executed while under the effect of Wheel in Motion, granted by Chaotic Spring .","DescriptionJSON":null,"EffectRange":0,"ID":3556,"IconHD":"/i/002000/002584_hr1.png","Name":"Wheeling Thrust","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":803,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":52,"CooldownGroup":24,"Description":"Increases critical hit rate of self and nearby party members by 10%.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":15,"ID":3557,"IconHD":"/i/002000/002585_hr1.png","Name":"Battle Litany","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":86,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":62,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all enemies in a straight line before you.\n\nCombo Action: Doom Spike\n\nCombo Potency: 120\n\nCombo Bonus: Grants Power Surge\n\nPower Surge Effect: Increases damage dealt by 10%\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":10,"ID":7397,"IconHD":"/i/002000/002586_hr1.png","Name":"Sonic Thrust","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":10,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":66,"CooldownGroup":22,"Description":"Grants Right Eye to self, increasing damage dealt by 10%. Also grants target party member Left Eye, increasing damage dealt by 5%.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":7398,"IconHD":"/i/002000/002587_hr1.png","Name":"Dragon Sight","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 200. Additional Effect: Strengthens the gaze of your Dragon Gauge by 1
\n
\n Can only be executed when Dive Ready.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7399,"IconHD":"/i/002000/002588_hr1.png","Name":"Mirage Dive","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":10,"SecondaryCostType":32,"SecondaryCostValue":1243,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":70,"CooldownGroup":3,"Description":"Delivers an attack to all enemies in a straight line before you with a potency of 360 for the first enemy, and 30% less for all remaining enemies.\n\nCan only be executed while under the effect of Life of the Dragon.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":7400,"IconHD":"/i/002000/002589_hr1.png","Name":"Nastrond","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":100,"SecondaryCostType":76,"SecondaryCostValue":2,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7397,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all enemies in a straight line before you.\n\nCombo Action: Sonic Thrust\n\nCombo Potency: 150
\nCombo Bonus: Grants Draconian Fire
\n
\nDuration: 30s","DescriptionJSON":null,"EffectRange":10,"ID":16477,"IconHD":"/i/002000/002590_hr1.png","Name":"Coerthan Torment","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":10,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":74,"CooldownGroup":9,"Description":"Delivers a jumping attack with a potency of 400. Returns you to your original position after the attack is made.\n\nAdditional Effect: Grants Dive Ready\n\nDuration: 15s\n\nCannot be executed while bound.\n\n\n\n※Action changes to Mirage Dive while under the effect of Dive Ready.","DescriptionJSON":null,"EffectRange":0,"ID":16478,"IconHD":"/i/002000/002591_hr1.png","Name":"High Jump","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 280. Additional Effect: Sharpens the Firstminds' Focus by 1
\n
\n Can only be executed while under the effect of Draconian Fire.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16479,"IconHD":"/i/002000/002592_hr1.png","Name":"Raiden Thrust","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1863,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":2,"ClassJobLevel":80,"CooldownGroup":7,"Description":"Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 620 for the first enemy, and 30% less for all remaining enemies.\n\nCan only be executed while under the effect of Life of the Dragon.\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":5,"ID":16480,"IconHD":"/i/002000/002593_hr1.png","Name":"Stardiver","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":300,"SecondaryCostType":76,"SecondaryCostValue":2,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 240 to target and all enemies nearby it.\n\nCan only be executed while under the effect of Firebird Trance.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":8,"ID":16515,"IconHD":"/i/002000/002736_hr1.png","Name":"Brand of Purgatory","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":93,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 130 to all enemies in a straight line before you. Additional Effect: Sharpens the Firstminds' Focus by 1
\n
\n Can only be executed while under the effect of Draconian Fire.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":10,"ID":25770,"IconHD":"/i/002000/002594_hr1.png","Name":"Draconian Fury","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":10,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1863,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":78,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":86,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Vorpal Thrust\n\nCombo Potency: 480\n\nCombo Bonus: Grants Fang and Claw Bared\n\nDuration: 30s\n\nEffect of Fang and Claw Bared ends upon execution of any melee weaponskill.","DescriptionJSON":null,"EffectRange":0,"ID":25771,"IconHD":"/i/002000/002595_hr1.png","Name":"Heavens' Thrust","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":87,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":86,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\n140 when executed from a target's rear.\n\nCombo Action: Disembowel\n\nCombo Potency: 260\n\nRear Combo Potency: 300\n\nCombo Bonus: Damage over time\n\nPotency: 45\n\nDuration: 24s\n\nCombo Bonus: Grants Wheel in Motion\n\nDuration: 30s\n\nEffect of Wheel in Motion ends upon execution of any melee weaponskill.","DescriptionJSON":null,"EffectRange":0,"ID":25772,"IconHD":"/i/002000/002596_hr1.png","Name":"Chaotic Spring","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":90,"CooldownGroup":2,"Description":"Delivers an attack to all enemies in a straight line before you with a potency of 420 for the first enemy, and 50% less for all remaining enemies.\n\nFirstminds' Focus Cost: 2","DescriptionJSON":null,"EffectRange":15,"ID":25773,"IconHD":"/i/002000/002597_hr1.png","Name":"Wyrmwind Thrust","PreservesCombo":1,"PrimaryCostType":75,"PrimaryCostValue":2,"Range":15,"Recast100ms":100,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"23":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":21,"Description":"Deals unaspected damage with a potency of 100.\n\nAdditional Effect: Grants Mage's Ballad to self and all party members within 30 yalms, increasing damage dealt by 1%\n\nDuration: 45s\n\nAdditional Effect: 80% chance to grant Repertoire\n\nRepertoire Effect: Reduces the recast time of Bloodletter and Rain of Death by 7.5s
\nAdditional Effect: Grants Mage's Coda","DescriptionJSON":null,"EffectRange":0,"ID":114,"IconHD":"/i/002000/002602_hr1.png","Name":"Mage's Ballad","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":17,"Description":"Deals unaspected damage with a potency of 100.\n\nAdditional Effect: Grants Army's Paeon to self and all party members within 30 yalms, increasing direct hit rate by 3%\n\nDuration: 45s\n\nAdditional Effect: 80% chance to grant Repertoire\n\nRepertoire Effect: Reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 4%\n\nCan be stacked up to 4 times.
\nAdditional Effect: Grants Army's Coda","DescriptionJSON":null,"EffectRange":0,"ID":116,"IconHD":"/i/002000/002603_hr1.png","Name":"Army's Paeon","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":45,"CooldownGroup":5,"Description":"Delivers an attack with a potency of 100 to target and all enemies nearby it.\n\nMaximum Charges: 3 Shares a recast timer with Bloodletter.","DescriptionJSON":null,"EffectRange":8,"ID":117,"IconHD":"/i/002000/002605_hr1.png","Name":"Rain of Death","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":150,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":50,"CooldownGroup":23,"Description":"Increases direct hit rate of self and all nearby party members by 20%.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":20,"ID":118,"IconHD":"/i/002000/002601_hr1.png","Name":"Battle Voice","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":3,"Description":"Delivers an attack with a potency of 200.","DescriptionJSON":null,"EffectRange":0,"ID":3558,"IconHD":"/i/002000/002606_hr1.png","Name":"Empyreal Arrow","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":150,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":52,"CooldownGroup":18,"Description":"Deals unaspected damage with a potency of 100.\n\nAdditional Effect: Grants the Wanderer's Minuet to self and all party members within 30 yalms, increasing critical hit rate by 2%\n\nDuration: 45s\n\nAdditional Effect: 80% chance to grant Repertoire\n\nRepertoire Effect: Allows execution of Pitch Perfect\n\nCan be stacked up to 3 times.
\nAdditional Effect: Grants Wanderer's Coda ※Action changes to Pitch Perfect upon execution.","DescriptionJSON":null,"EffectRange":0,"ID":3559,"IconHD":"/i/002000/002607_hr1.png","Name":"the Wanderer's Minuet","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":56,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nAdditional Effect: If the target is suffering from a Caustic Bite or Stormbite effect inflicted by you, the effect timer is reset
\nAdditional Effect: 35% chance of becoming Straight Shot Ready
\n
\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":3560,"IconHD":"/i/002000/002608_hr1.png","Name":"Iron Jaws","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":9,"Description":"Removes one select detrimental effect from self or target party member. If the target is not enfeebled, a barrier is created nullifying the target's next detrimental effect suffered.\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":3561,"IconHD":"/i/002000/002609_hr1.png","Name":"the Warden's Paean","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":450,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":13,"Description":"Delivers an attack with a potency of 300.","DescriptionJSON":null,"EffectRange":0,"ID":3562,"IconHD":"/i/002000/002610_hr1.png","Name":"Sidewinder","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":52,"CooldownGroup":1,"Description":"Delivers an attack to the target. Potency varies with number of Repertoire stacks.\n\n1 Repertoire Stack: 100\n\n2 Repertoire Stacks: 220\n\n3 Repertoire Stacks: 360\n\nCan only be executed when the Wanderer's Minuet is active.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7404,"IconHD":"/i/002000/002611_hr1.png","Name":"Pitch Perfect","PreservesCombo":1,"PrimaryCostType":32,"PrimaryCostValue":1,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":62,"CooldownGroup":24,"Description":"Reduces damage taken by self and nearby party members by 10%.\n\nDuration: 15s\n\nEffect cannot be stacked with machinist's Tactician or dancer's Shield Samba.","DescriptionJSON":null,"EffectRange":20,"ID":7405,"IconHD":"/i/002000/002612_hr1.png","Name":"Troubadour","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 150.\n\nAdditional Effect: Poison\n\nPotency: 20\n\nDuration: 45s
\nAdditional Effect: 35% chance of becoming Straight Shot Ready
\n
\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":7406,"IconHD":"/i/002000/002613_hr1.png","Name":"Caustic Bite","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":168,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Deals wind damage with a potency of 100.\n\nAdditional Effect: Wind damage over time\n\nPotency: 25\n\nDuration: 45s
\nAdditional Effect: 35% chance of becoming Straight Shot Ready
\n
\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":7407,"IconHD":"/i/002000/002614_hr1.png","Name":"Stormbite","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":168,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":66,"CooldownGroup":15,"Description":"Increases HP recovery via healing actions for a party member or self by 20%.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":7408,"IconHD":"/i/002000/002615_hr1.png","Name":"Nature's Minne","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 280.\n\nCan only be executed when Straight Shot Ready.","DescriptionJSON":null,"EffectRange":0,"ID":7409,"IconHD":"/i/002000/002616_hr1.png","Name":"Refulgent Arrow","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":122,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":122,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 170 to target and all enemies nearby it.\n\nBarrage Potency: 270\n\nCan only be executed when Shadowbite Ready.","DescriptionJSON":null,"EffectRange":5,"ID":16494,"IconHD":"/i/002000/002617_hr1.png","Name":"Shadowbite","PreservesCombo":0,"PrimaryCostType":10,"PrimaryCostValue":3002,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":3002,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 220.\n\nAdditional Effect: 35% chance of becoming Straight Shot Ready\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":16495,"IconHD":"/i/002000/002618_hr1.png","Name":"Burst Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all enemies in a straight line before you.\n\nSoul Voice Gauge Cost: 20 \n\nPotency increases up to 500 as Soul Voice Gauge exceeds minimum cost. Additional Effect: Grants Blast Arrow Ready upon execution while Soul Voice Gauge is 80 or higher
\n
\nDuration: 10s
\n
\n Consumes Soul Voice Gauge upon execution.
\n
\n
\n※Action changes to Blast Arrow while under the effect of Blast Arrow Ready.","DescriptionJSON":null,"EffectRange":25,"ID":16496,"IconHD":"/i/002000/002619_hr1.png","Name":"Apex Arrow","PreservesCombo":0,"PrimaryCostType":59,"PrimaryCostValue":20,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":86,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 100 to all enemies in a cone before you.\n\nVoid Shroud Cost: 2\n\nShares a recast timer with Lemure's Slice.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":8,"ID":24400,"IconHD":"/i/003000/003628_hr1.png","Name":"Lemure's Scythe","PreservesCombo":1,"PrimaryCostType":67,"PrimaryCostValue":2,"Range":8,"Recast100ms":10,"SecondaryCostType":112,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 130 to all enemies in a cone before you.\n\nAdditional Effect: 35% chance of becoming Shadowbite Ready\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":12,"ID":25783,"IconHD":"/i/002000/002620_hr1.png","Name":"Ladonsbite","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":12,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":86,"CooldownGroup":58,"Description":"Delivers an attack to all enemies in a straight line before you with a potency of 600 for the first enemy, and 60% less for all remaining enemies.\n\nCan only be executed while under the effect of Blast Arrow Ready.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":25,"ID":25784,"IconHD":"/i/002000/002621_hr1.png","Name":"Blast Arrow","PreservesCombo":0,"PrimaryCostType":10,"PrimaryCostValue":2692,"Range":25,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":2692,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":90,"CooldownGroup":16,"Description":"Increases damage dealt by self and nearby party members.\n\nDuration: 15s\n\nEffectiveness is determined by the number of different Coda active in the Song Gauge.\n\n1 Coda: 2%\n\n2 Coda: 4%\n\n3 Coda: 6%\n\nCan only be executed when at least 1 coda is active.","DescriptionJSON":null,"EffectRange":20,"ID":25785,"IconHD":"/i/002000/002622_hr1.png","Name":"Radiant Finale","PreservesCombo":0,"PrimaryCostType":81,"PrimaryCostValue":0,"Range":0,"Recast100ms":1100,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"24":[{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Restores HP of target and all party members nearby target.\n\nCure Potency: 600","DescriptionJSON":null,"EffectRange":10,"ID":131,"IconHD":"/i/000000/000407_hr1.png","Name":"Cure III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":15,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":23,"Description":"Reduces spell cast time and recast time, and auto-attack delay by 20%.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":136,"IconHD":"/i/002000/002626_hr1.png","Name":"Presence of Mind","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Grants healing over time effect to target.\n\nCure Potency: 250 Duration: 18s","DescriptionJSON":null,"EffectRange":0,"ID":137,"IconHD":"/i/002000/002628_hr1.png","Name":"Regen","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":2,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 140 to all nearby enemies.\n\nAdditional Effect: Stun\n\nDuration: 4s","DescriptionJSON":null,"EffectRange":8,"ID":139,"IconHD":"/i/002000/002629_hr1.png","Name":"Holy","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":0,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":488,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":24,"Description":"Restores all of a target's HP.","DescriptionJSON":null,"EffectRange":0,"ID":140,"IconHD":"/i/002000/002627_hr1.png","Name":"Benediction","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":1800,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":54,"CooldownGroup":58,"Description":"Deals earth damage with a potency of 220.","DescriptionJSON":null,"EffectRange":0,"ID":3568,"IconHD":"/i/002000/002631_hr1.png","Name":"Stone III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":182,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":7,"ClassJobLevel":52,"CooldownGroup":18,"Description":"Envelops a designated area in a veil of succor, granting healing over time to self and any party members who enter.\n\nCure Potency: 100\n\nDuration: 24s
\nAdditional Effect: Increases HP recovery via healing actions on party members in the designated area by 10%","DescriptionJSON":null,"EffectRange":10,"ID":3569,"IconHD":"/i/002000/002632_hr1.png","Name":"Asylum","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":14,"Description":"Restores target's HP.\n\nCure Potency: 700","DescriptionJSON":null,"EffectRange":0,"ID":3570,"IconHD":"/i/002000/002633_hr1.png","Name":"Tetragrammaton","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":56,"CooldownGroup":6,"Description":"Deals unaspected damage with a potency of 400 to all nearby enemies.\n\nAdditional Effect: Restores own HP and the HP of nearby party members\n\nCure Potency: 400\n\nAdditional Effect: Restores 5% of maximum MP","DescriptionJSON":null,"EffectRange":15,"ID":3571,"IconHD":"/i/002000/002634_hr1.png","Name":"Assize","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":450,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":58,"CooldownGroup":21,"Description":"Next action is executed without MP cost.\n\nDuration: 12s\n\nMaximum Charges: 2","DescriptionJSON":null,"EffectRange":0,"ID":7430,"IconHD":"/i/002000/002636_hr1.png","Name":"Thin Air","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Deals earth damage with a potency of 260.","DescriptionJSON":null,"EffectRange":0,"ID":7431,"IconHD":"/i/002000/002637_hr1.png","Name":"Stone IV","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":308,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":66,"CooldownGroup":10,"Description":"Creates a barrier around self or target party member that absorbs damage equivalent to a heal of 500 potency.\n\nDuration: 15s
\nMaximum Charges: 2","DescriptionJSON":null,"EffectRange":0,"ID":7432,"IconHD":"/i/002000/002638_hr1.png","Name":"Divine Benison","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":70,"CooldownGroup":11,"Description":"Grants Confession to self and nearby party members.\n\nUpon receiving HP recovery via Medica, Medica II, Cure III, or Afflatus Rapture cast by self, Confession triggers an additional healing effect.\n\nCure Potency: 200\n\nDuration: 10s","DescriptionJSON":null,"EffectRange":20,"ID":7433,"IconHD":"/i/002000/002639_hr1.png","Name":"Plenary Indulgence","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":52,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 800
\nAdditional Effect: Nourishes the Blood Lily Healing Gauge Cost: 1 Lily","DescriptionJSON":null,"EffectRange":0,"ID":16531,"IconHD":"/i/002000/002640_hr1.png","Name":"Afflatus Solace","PreservesCombo":0,"PrimaryCostType":57,"PrimaryCostValue":1,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 60.\n\nAdditional Effect: Unaspected damage over time\n\nPotency: 60\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":16532,"IconHD":"/i/002000/002641_hr1.png","Name":"Dia","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":307,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 290.","DescriptionJSON":null,"EffectRange":0,"ID":16533,"IconHD":"/i/002000/002642_hr1.png","Name":"Glare","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":487,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 400 Additional Effect: Nourishes the Blood Lily\n\nHealing Gauge Cost: 1 Lily","DescriptionJSON":null,"EffectRange":20,"ID":16534,"IconHD":"/i/002000/002643_hr1.png","Name":"Afflatus Rapture","PreservesCombo":0,"PrimaryCostType":57,"PrimaryCostValue":1,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":74,"CooldownGroup":58,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 1,240 for the first enemy, and 50% less for all remaining enemies.\n\nCan only be executed when the Blood Lily is in full bloom.","DescriptionJSON":null,"EffectRange":5,"ID":16535,"IconHD":"/i/002000/002644_hr1.png","Name":"Afflatus Misery","PreservesCombo":0,"PrimaryCostType":56,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":22,"Description":"Increases healing magic potency by 20%, while reducing damage taken by self and all party members within a radius of 30 yalms by 10%.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":16536,"IconHD":"/i/002000/002645_hr1.png","Name":"Temperance","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 310.","DescriptionJSON":null,"EffectRange":0,"ID":25859,"IconHD":"/i/002000/002646_hr1.png","Name":"Glare III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":487,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":2,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 150 to all nearby enemies.\n\nAdditional Effect: Stun\n\nDuration: 4s","DescriptionJSON":null,"EffectRange":8,"ID":25860,"IconHD":"/i/002000/002647_hr1.png","Name":"Holy III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":0,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":488,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":86,"CooldownGroup":12,"Description":"Reduces damage taken by a party member or self by 15%.\n\nDuration: 8s","DescriptionJSON":null,"EffectRange":0,"ID":25861,"IconHD":"/i/002000/002648_hr1.png","Name":"Aquaveil","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":7,"ClassJobLevel":90,"CooldownGroup":25,"Description":"Places a healing blossom at the designated location and grants 5 stacks of Liturgy of the Bell to self.\n\nDuration: 15s\n\nTaking damage will expend 1 stack of Liturgy of the Bell to heal self and all party members within a radius of 20 yalms.\n\nCure Potency: 400\n\nThe effect of this action can only be triggered once per second.\n\nAny remaining stacks of Liturgy of the Bell will trigger an additional healing effect when time expires or upon executing this action a second time.\n\nCure Potency: 200 for every remaining stack of Liturgy of the Bell\n\nThis action does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":1,"ID":25862,"IconHD":"/i/002000/002649_hr1.png","Name":"Liturgy of the Bell","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":1800,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1}],"25":[{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Deals lightning damage with a potency of 50.\n\nAdditional Effect: Lightning damage over time\n\nPotency: 35\n\nDuration: 30s
\nAdditional Effect: 10% chance after each tick that the next Thunder spell of any grade will add its full damage over time amount to its initial damage, have no cast time, and cost no MP
\n
\nDuration: 40s
\n
\n Only one Thunder spell-induced damage over time effect per caster can be inflicted upon a single target.","DescriptionJSON":null,"EffectRange":0,"ID":153,"IconHD":"/i/000000/000459_hr1.png","Name":"Thunder III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":171,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":35,"CastType":1,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Deals ice damage with a potency of 260.\n\nAdditional Effect: Grants Umbral Ice III and removes Astral Fire\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":154,"IconHD":"/i/000000/000456_hr1.png","Name":"Blizzard III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":8,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":24,"Description":"Restores 30% of maximum MP.","DescriptionJSON":null,"EffectRange":0,"ID":158,"IconHD":"/i/002000/002651_hr1.png","Name":"Manafont","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1800,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":28,"CastType":2,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Deals ice damage with a potency of 120 to target and all enemies nearby it. Additional Effect: Grants 3 Umbral Hearts
\n
\nUmbral Heart Bonus: Nullifies Astral Fire's MP cost increase for Fire spells and reduces MP cost for Flare by one-third
\n
\n Can only be executed while under the effect of Umbral Ice.","DescriptionJSON":null,"EffectRange":5,"ID":159,"IconHD":"/i/002000/002653_hr1.png","Name":"Freeze","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":10,"Range":25,"Recast100ms":25,"SecondaryCostType":48,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":40,"CastType":2,"ClassJobLevel":50,"CooldownGroup":58,"Description":"Deals fire damage to target and all enemies nearby it with a potency of 220 for the first enemy, and 40% less for all remaining enemies. Enhanced Flare Potency: 280
\n
\n Additional Effect: Grants Astral Fire III\n\nDuration: 15s\n\nCan only be executed while under the effect of Astral Fire.","DescriptionJSON":null,"EffectRange":5,"ID":162,"IconHD":"/i/002000/002652_hr1.png","Name":"Flare","PreservesCombo":0,"PrimaryCostType":4,"PrimaryCostValue":8,"Range":25,"Recast100ms":25,"SecondaryCostType":49,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":7,"ClassJobLevel":52,"CooldownGroup":15,"Description":"Connects naturally occurring ley lines to create a circle of power which, while standing within it, reduces spell cast time and recast time, and auto-attack delay by 15%.\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":3,"ID":3573,"IconHD":"/i/002000/002656_hr1.png","Name":"Ley Lines","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":20,"Description":"Ensures the next Scathe, Fire, Paradox, or Thunder spell cast will, for the first hit, trigger Scathe's additional effect, Firestarter, or Thundercloud.\n\nDuration: 30s
\nMaximum Charges: 2","DescriptionJSON":null,"EffectRange":0,"ID":3574,"IconHD":"/i/002000/002657_hr1.png","Name":"Sharpcast","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":58,"CooldownGroup":58,"Description":"Deals ice damage with a potency of 310.\n\nAdditional Effect: Grants 3 Umbral Hearts\n\nUmbral Heart Bonus: Nullifies Astral Fire's MP cost increase for Fire spells and reduces MP cost for Flare by one-third\n\nCan only be executed while under the effect of Umbral Ice.","DescriptionJSON":null,"EffectRange":0,"ID":3576,"IconHD":"/i/002000/002659_hr1.png","Name":"Blizzard IV","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":8,"Range":25,"Recast100ms":25,"SecondaryCostType":86,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":28,"CastType":1,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 310.\n\nCan only be executed while under the effect of Astral Fire.","DescriptionJSON":null,"EffectRange":0,"ID":3577,"IconHD":"/i/002000/002660_hr1.png","Name":"Fire IV","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":8,"Range":25,"Recast100ms":25,"SecondaryCostType":87,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":7,"ClassJobLevel":62,"CooldownGroup":2,"Description":"Move instantly to Ley Lines drawn by you.\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":7419,"IconHD":"/i/002000/002661_hr1.png","Name":"Between the Lines","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":30,"SecondaryCostType":60,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":2,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Deals lightning damage with a potency of 50 to target and all enemies nearby it.\n\nAdditional Effect: Lightning damage over time\n\nPotency: 20\n\nDuration: 18s\n\nAdditional Effect: 3% chance after each tick that the next Thunder spell of any grade will add its full damage over time amount to its initial damage, have no cast time, and cost no MP\n\nDuration: 40s\n\nOnly one Thunder spell-induced damage over time effect per caster can be inflicted upon a single target.","DescriptionJSON":null,"EffectRange":5,"ID":7420,"IconHD":"/i/002000/002662_hr1.png","Name":"Thunder IV","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":172,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":66,"CooldownGroup":10,"Description":"The next three spells will require no cast time.\n\nDuration: 15s\n\nMaximum Charges: 2","DescriptionJSON":null,"EffectRange":0,"ID":7421,"IconHD":"/i/002000/002663_hr1.png","Name":"Triplecast","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":2,"ClassJobLevel":70,"CooldownGroup":58,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 560 for the first enemy, and 60% less for all remaining enemies.\n\nPolyglot Cost: 1","DescriptionJSON":null,"EffectRange":5,"ID":7422,"IconHD":"/i/002000/002664_hr1.png","Name":"Foul","PreservesCombo":0,"PrimaryCostType":23,"PrimaryCostValue":1,"Range":25,"Recast100ms":25,"SecondaryCostType":11,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":30,"CastType":1,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 340.\n\nAdditional Effect: Grants Astral Fire III\n\nDuration: 15s\n\nCan only be executed while under the effect of Astral Fire.","DescriptionJSON":null,"EffectRange":0,"ID":16505,"IconHD":"/i/002000/002665_hr1.png","Name":"Despair","PreservesCombo":0,"PrimaryCostType":4,"PrimaryCostValue":8,"Range":25,"Recast100ms":25,"SecondaryCostType":87,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Grants Umbral Ice and 1 Umbral Heart.\n\nUmbral Heart Bonus:
Nullifies Astral Fire's MP cost increase for Fire spells and reduces MP cost for Flare by one-third\n\nCan only be executed while under the effect of Umbral Ice.","DescriptionJSON":null,"EffectRange":0,"ID":16506,"IconHD":"/i/002000/002666_hr1.png","Name":"Umbral Soul","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":86,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 760.\n\nPolyglot Cost: 1","DescriptionJSON":null,"EffectRange":0,"ID":16507,"IconHD":"/i/002000/002667_hr1.png","Name":"Xenoglossy","PreservesCombo":0,"PrimaryCostType":23,"PrimaryCostValue":1,"Range":25,"Recast100ms":25,"SecondaryCostType":11,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":80,"CooldownGroup":6,"Description":"Creates a barrier around self and all nearby party members. Damage absorbed increases with stacks of Rising Rhythm.\n\n0 Stacks: 5% of maximum HP\n\n1 Stack: 6% of maximum HP\n\n2 Stacks: 7% of maximum HP\n\n3 Stacks: 8% of maximum HP\n\n4 Stacks: 10% of maximum HP\n\nDuration: 30s\n\nCan only be executed while Improvisation is active.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":8,"ID":25789,"IconHD":"/i/003000/003479_hr1.png","Name":"Improvised Finish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":91,"SecondaryCostValue":1827,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":30,"CastType":2,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 140 to target and all enemies nearby it.\n\nAdditional Effect: Grants Astral Fire III and removes Umbral Ice\n\nDuration: 15s\n\nAstral Fire Bonus: Grants Enhanced Flare\n\nEffect is canceled if Astral Fire ends.","DescriptionJSON":null,"EffectRange":5,"ID":25794,"IconHD":"/i/002000/002669_hr1.png","Name":"High Fire II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":15,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":30,"CastType":2,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Deals ice damage with a potency of 140 to target and all enemies nearby it.\n\nAdditional Effect: Grants Umbral Ice III and removes Astral Fire\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":5,"ID":25795,"IconHD":"/i/002000/002670_hr1.png","Name":"High Blizzard II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":8,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":86,"CooldownGroup":21,"Description":"Grants Polyglot.\n\nCan only be executed while under the effect of Astral Fire or Umbral Ice.","DescriptionJSON":null,"EffectRange":0,"ID":25796,"IconHD":"/i/002000/002671_hr1.png","Name":"Amplifier","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":59,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 500.\n\nAstral Fire Bonus: Refreshes the duration of Astral Fire and 40% chance to grant Firestarter\n\nDuration: 15s\n\nFirestarter Effect: Next Fire III will require no time to cast and cost no MP\n\nDuration: 30s\n\nUmbral Ice Bonus: Spell is cast immediately, requires no MP to cast, and refreshes the duration of Umbral Ice\n\nDuration: 15s\n\nCan only be executed while under the effect of Paradox.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25797,"IconHD":"/i/002000/002672_hr1.png","Name":"Paradox","PreservesCombo":0,"PrimaryCostType":76,"PrimaryCostValue":16,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"26":[{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 240.","DescriptionJSON":null,"EffectRange":0,"ID":163,"IconHD":"/i/000000/000501_hr1.png","Name":"Ruin","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":126,"SecondaryCostValue":217,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 270.","DescriptionJSON":null,"EffectRange":0,"ID":172,"IconHD":"/i/000000/000502_hr1.png","Name":"Ruin II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":126,"SecondaryCostValue":473,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":80,"CastType":1,"ClassJobLevel":12,"CooldownGroup":58,"Description":"Resurrects target to a weakened state.","DescriptionJSON":null,"EffectRange":0,"ID":173,"IconHD":"/i/000000/000511_hr1.png","Name":"Resurrection","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":24,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":10,"CooldownGroup":1,"Description":"Deals unaspected damage with a potency of 300.\n\nAetherflow Gauge Cost: 1","DescriptionJSON":null,"EffectRange":0,"ID":181,"IconHD":"/i/002000/002676_hr1.png","Name":"Fester","PreservesCombo":1,"PrimaryCostType":30,"PrimaryCostValue":1,"Range":25,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 400","DescriptionJSON":null,"EffectRange":0,"ID":16230,"IconHD":"/i/000000/000518_hr1.png","Name":"Physick","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":10,"CooldownGroup":8,"Description":"Deals unaspected damage with a potency of 200.\n\nAdditional Effect: Aetherflow II
\nAdditional Effect: Grants Further Ruin
\n
\nDuration: 60s
\nShares a recast timer with Energy Siphon.","DescriptionJSON":null,"EffectRange":0,"ID":16508,"IconHD":"/i/000000/000514_hr1.png","Name":"Energy Drain","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":2,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 100 to target and all enemies nearby it.","DescriptionJSON":null,"EffectRange":5,"ID":16511,"IconHD":"/i/002000/002698_hr1.png","Name":"Outburst","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":126,"SecondaryCostValue":477,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Summons Carbuncle to your side.","DescriptionJSON":null,"EffectRange":0,"ID":25798,"IconHD":"/i/000000/000516_hr1.png","Name":"Summon Carbuncle","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":0,"Recast100ms":25,"SecondaryCostType":100,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":2,"CooldownGroup":21,"Description":"Orders Carbuncle to execute Radiant Aegis.\n\nRadiant Aegis Effect: Creates a barrier around self that absorbs damage totaling 20% of your maximum HP\n\nDuration: 30s Maximum Charges: 2
\n
\n Can only be executed while Carbuncle is summoned.","DescriptionJSON":null,"EffectRange":0,"ID":25799,"IconHD":"/i/002000/002750_hr1.png","Name":"Radiant Aegis","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":115,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":6,"CooldownGroup":7,"Description":"Grants Aethercharge, increasing the potency of Ruin, Ruin II, and Ruin III by 50, and Outburst by 20.\n\nDuration: 15s\n\nAdditional Effect: Grants Ruby Arcanum, Topaz Arcanum, and Emerald Arcanum Can only be executed in combat and while Carbuncle is summoned.","DescriptionJSON":null,"EffectRange":0,"ID":25800,"IconHD":"/i/002000/002751_hr1.png","Name":"Aethercharge","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":124,"SecondaryCostValue":474,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":6,"CooldownGroup":58,"Description":"Summons Ruby Carbuncle, and orders it to execute Glittering Ruby.\n\nGlittering Ruby Effect: Rushes target and deals fire damage with a potency of 400\n\nAdditional Effect: Grants 2 stacks of Fire Attunement\n\nFire Attunement Effect: Gemshine and Precious Brilliance become fire-aspected\n\nDuration: 30s\n\nCan only be executed while under the effect of Ruby Arcanum and Carbuncle is summoned.","DescriptionJSON":null,"EffectRange":0,"ID":25802,"IconHD":"/i/002000/002753_hr1.png","Name":"Summon Ruby","PreservesCombo":0,"PrimaryCostType":71,"PrimaryCostValue":1,"Range":25,"Recast100ms":25,"SecondaryCostType":116,"SecondaryCostValue":468,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Summons Topaz Carbuncle, and orders it to execute Glittering Topaz.\n\nGlittering Topaz Effect: Rushes target and deals earth damage with a potency of 400\n\nAdditional Effect: Grants 4 stacks of Earth Attunement\n\nEarth Attunement Effect: Gemshine and Precious Brilliance become earth-aspected\n\nDuration: 30s\n\nCan only be executed while under the effect of Topaz Arcanum and Carbuncle is summoned.","DescriptionJSON":null,"EffectRange":0,"ID":25803,"IconHD":"/i/000000/000517_hr1.png","Name":"Summon Topaz","PreservesCombo":0,"PrimaryCostType":71,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":116,"SecondaryCostValue":469,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":22,"CooldownGroup":58,"Description":"Summons Emerald Carbuncle, and orders it to execute Glittering Emerald.\n\nGlittering Emerald Effect: Deals wind damage with a potency of 400\n\nAdditional Effect: Grants 4 stacks of Wind Attunement\n\nWind Attunement Effect: Gemshine and Precious Brilliance become wind-aspected\n\nDuration: 30s\n\nCan only be executed while under the effect of Emerald Arcanum and Carbuncle is summoned.","DescriptionJSON":null,"EffectRange":0,"ID":25804,"IconHD":"/i/002000/002754_hr1.png","Name":"Summon Emerald","PreservesCombo":0,"PrimaryCostType":71,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":116,"SecondaryCostValue":470,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":6,"CooldownGroup":58,"Description":"Channel the energies of your active elemental attunement to attack your enemy.\n\nFire Attunement Effect: Deal fire damage to a single target\n\nEarth Attunement Effect: Deal earth damage to a single target\n\nWind Attunement Effect: Deal wind damage to a single target","DescriptionJSON":null,"EffectRange":0,"ID":25883,"IconHD":"/i/002000/002777_hr1.png","Name":"Gemshine","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":25,"SecondaryCostType":73,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":2,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Channel the energies of your active elemental attunement to attack multiple enemies.\n\nFire Attunement Effect: Deal fire damage to a target and all enemies nearby it\n\nEarth Attunement Effect: Deal earth damage to a target and all enemies nearby it\n\nWind Attunement Effect: Deal wind damage to a target and all enemies nearby it","DescriptionJSON":null,"EffectRange":5,"ID":25884,"IconHD":"/i/002000/002778_hr1.png","Name":"Precious Brilliance","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":25,"SecondaryCostType":73,"SecondaryCostValue":0,"TargetArea":0}],"27":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":24,"Description":"Commands pet to use its signature attack.\n\nCan only be executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":184,"IconHD":"/i/002000/002677_hr1.png","Name":"Enkindle","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":1800,"SecondaryCostType":73,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":40,"CooldownGroup":2,"Description":"Deals unaspected damage with a potency of 150 to target and all enemies nearby it.\n\nAetherflow Gauge Cost: 1","DescriptionJSON":null,"EffectRange":5,"ID":3578,"IconHD":"/i/002000/002681_hr1.png","Name":"Painflare","PreservesCombo":1,"PrimaryCostType":30,"PrimaryCostValue":1,"Range":25,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":54,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 310 .","DescriptionJSON":null,"EffectRange":0,"ID":3579,"IconHD":"/i/002000/002682_hr1.png","Name":"Ruin III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":126,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":58,"CooldownGroup":7,"Description":"Enters Dreadwyrm Trance.\n\nDuration: 15s\n\nAdditional Effect: Changes Ruin III to Astral Impulse and Outburst to Astral Flare\n\nAdditional Effect: Grants Ruby Arcanum, Topaz Arcanum, and Emerald Arcanum\n\nCan only be executed in combat and while Carbuncle is summoned.","DescriptionJSON":null,"EffectRange":0,"ID":3581,"IconHD":"/i/002000/002684_hr1.png","Name":"Dreadwyrm Trance","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":124,"SecondaryCostValue":178,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":60,"CooldownGroup":6,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 500 for the first enemy, and 60% less for all remaining enemies.\n\nCan only be executed while in Dreadwyrm Trance.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":3582,"IconHD":"/i/002000/002685_hr1.png","Name":"Deathflare","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":200,"SecondaryCostType":79,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":62,"CooldownGroup":58,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 430 for the first enemy, and 60% less for all remaining enemies.\n\nCan only be executed while under the effect of Further Ruin.","DescriptionJSON":null,"EffectRange":5,"ID":7426,"IconHD":"/i/002000/002686_hr1.png","Name":"Ruin IV","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":2701,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":7,"Description":"Enters Dreadwyrm Trance and summons Demi-Bahamut to fight your target.\n\nDemi-Bahamut will execute Wyrmwave automatically on the targets attacked by you after summoning.\n\nIncreases enmity in target when Demi-Bahamut is summoned.\n\nDuration: 15s\n\nAdditional Effect: Changes Ruin III to Astral Impulse and Tri-disaster to Astral Flare\n\nAdditional Effect: Grants Ruby Arcanum, Topaz Arcanum, and Emerald Arcanum\n\nCan only be executed in combat and while Carbuncle is summoned.","DescriptionJSON":null,"EffectRange":0,"ID":7427,"IconHD":"/i/002000/002691_hr1.png","Name":"Summon Bahamut","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":600,"SecondaryCostType":115,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":0,"Description":"Deals unaspected damage with a potency of 150.\n\nWill only execute while Demi-Bahamut is summoned.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7428,"IconHD":"/i/002000/002692_hr1.png","Name":"Wyrmwave","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":50,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":4,"Description":"Orders Demi-Bahamut to execute Akh Morn.\n\nAkh Morn Effect: Deals unaspected damage to target and all enemies nearby it with a potency of 1,300 for the first enemy, and 60% less for all remaining enemies","DescriptionJSON":null,"EffectRange":0,"ID":7429,"IconHD":"/i/002000/002693_hr1.png","Name":"Enkindle Bahamut","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":200,"SecondaryCostType":65,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":70,"CooldownGroup":0,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 1,300 for the first enemy, and 60% less for all remaining enemies.\n\nCan only be executed while Demi-Bahamut is summoned.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":7449,"IconHD":"/i/002000/002694_hr1.png","Name":"Akh Morn","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":50,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":52,"CooldownGroup":8,"Description":"Deals unaspected damage with a potency of 100 to target and all enemies nearby it.\n\nAdditional Effect: Aetherflow II Additional Effect: Grants Further Ruin
\n
\nDuration: 60s
\n
\n Shares a recast timer with Energy Drain.","DescriptionJSON":null,"EffectRange":5,"ID":16510,"IconHD":"/i/002000/002697_hr1.png","Name":"Energy Siphon","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":2,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 100 to target and all enemies nearby it.","DescriptionJSON":null,"EffectRange":5,"ID":16511,"IconHD":"/i/002000/002698_hr1.png","Name":"Outburst","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":126,"SecondaryCostValue":477,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 540.\n\nCan only be executed while under the effect of Firebird Trance.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16514,"IconHD":"/i/002000/002735_hr1.png","Name":"Fountain of Fire","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":93,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 240 to target and all enemies nearby it.\n\nCan only be executed while under the effect of Firebird Trance.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":8,"ID":16515,"IconHD":"/i/002000/002736_hr1.png","Name":"Brand of Purgatory","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":93,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":4,"Description":"Orders Demi-Phoenix to execute Revelation.\n\nRevelation Effect: Deals fire damage to target and all enemies nearby it with a potency of 1,300 for the first enemy, and 60% less for all remaining enemies\n\nAction replaces Enkindle Bahamut while Demi-Phoenix is summoned.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16516,"IconHD":"/i/002000/002737_hr1.png","Name":"Enkindle Phoenix","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":200,"SecondaryCostType":93,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":80,"CooldownGroup":0,"Description":"Gradually restores own HP and the HP of all nearby party members.\n\nCure Potency: 100\n\nDuration: 21s\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":16517,"IconHD":"/i/002000/002731_hr1.png","Name":"Everlasting Flight","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":80,"CooldownGroup":0,"Description":"Deals fire damage to target and all enemies nearby it with a potency of 1,300 for the first enemy, and 60% less for all remaining enemies.\n\nCan only be executed while Demi-Phoenix is summoned.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":16518,"IconHD":"/i/002000/002732_hr1.png","Name":"Revelation","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":50,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":0,"Description":"Deals fire damage with a potency of 150.\n\nWill only execute while Demi-Phoenix is summoned.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16519,"IconHD":"/i/002000/002733_hr1.png","Name":"Scarlet Flame","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":50,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 450.\n\nAdditional Effect: Opens the Lunar Nadi\n\nIf the Lunar Nadi is already open, opens the Solar Nadi instead.\n\nAdditional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form\n\nDuration: 30s\n\nAny additional effects associated with the executed action will also be applied.\n\nCan only be executed while under the effect of three Beast Chakra.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25765,"IconHD":"/i/002000/002977_hr1.png","Name":"Celestial Revolution","PreservesCombo":0,"PrimaryCostType":79,"PrimaryCostValue":1,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":86,"CooldownGroup":58,"Description":"Deals physical fire damage to all nearby enemies with a potency of 700 for the first enemy, and 70% less for all remaining enemies.\n\nAdditional Effect: Opens the Solar Nadi\n\nAdditional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form\n\nDuration: 30s\n\nAny additional effects associated with the executed action will also be applied.\n\nCan only be executed while under the effect of three distinct Beast Chakra.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25768,"IconHD":"/i/002000/002980_hr1.png","Name":"Rising Phoenix","PreservesCombo":0,"PrimaryCostType":79,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Delivers an attack to target and all enemies nearby it with a potency of 1,150 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form\n\nDuration: 30s\n\nAny additional effects associated with the executed action will also be applied.\n\nCan only be executed while under the effect of Lunar Nadi and Solar Nadi, as well as three Beast Chakra.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25769,"IconHD":"/i/002000/002981_hr1.png","Name":"Phantom Rush","PreservesCombo":0,"PrimaryCostType":79,"PrimaryCostValue":3,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 500.\n\nAstral Fire Bonus: Refreshes the duration of Astral Fire and 40% chance to grant Firestarter\n\nDuration: 15s\n\nFirestarter Effect: Next Fire III will require no time to cast and cost no MP\n\nDuration: 30s\n\nUmbral Ice Bonus: Spell is cast immediately, requires no MP to cast, and refreshes the duration of Umbral Ice\n\nDuration: 15s\n\nCan only be executed while under the effect of Paradox.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25797,"IconHD":"/i/002000/002672_hr1.png","Name":"Paradox","PreservesCombo":0,"PrimaryCostType":76,"PrimaryCostValue":16,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":66,"CooldownGroup":20,"Description":"Increases damage dealt by self and nearby party members by 3%\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":15,"ID":25801,"IconHD":"/i/002000/002780_hr1.png","Name":"Searing Light","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Summons Ifrit-Egi and orders it to execute Inferno . Inferno Effect: Rushes forward and deals fire damage to all enemies in a 5-yalm cone before it with a potency of 600 for the first enemy, and 60% less for all remaining enemies Additional Effect: Grants 2 stacks of Fire Attunement\n\nFire Attunement Effect: Gemshine and Precious Brilliance become fire-aspected\n\nDuration: 30s Additional Effect: Grants Ifrit's Favor
\n
\nEffect of Ifrit's Favor ends upon execution of certain summoner actions.
\n
\n Can only be executed while under the effect of Ruby Arcanum and Carbuncle is summoned.","DescriptionJSON":null,"EffectRange":0,"ID":25805,"IconHD":"/i/002000/002680_hr1.png","Name":"Summon Ifrit","PreservesCombo":0,"PrimaryCostType":71,"PrimaryCostValue":1,"Range":25,"Recast100ms":25,"SecondaryCostType":116,"SecondaryCostValue":481,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Summons Titan-Egi and orders it to execute Earthen Fury . Earthen Fury Effect: Rushes forward and deals earth damage to all enemies within 5 yalms with a potency of 600 for the first enemy, and 60% less for all remaining enemies Additional Effect: Grants 4 stacks of Earth Attunement\n\nEarth Attunement Effect: Gemshine and Precious Brilliance become earth-aspected\n\nDuration: 30s\n\nCan only be executed while under the effect of Topaz Arcanum and Carbuncle is summoned.","DescriptionJSON":null,"EffectRange":0,"ID":25806,"IconHD":"/i/002000/002755_hr1.png","Name":"Summon Titan","PreservesCombo":0,"PrimaryCostType":71,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":116,"SecondaryCostValue":481,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Summons Garuda-Egi and orders it to execute Aerial Blast . Aerial Blast Effect: Deals wind damage to target and all enemies within 5 yalms with a potency of 600 for the first enemy, and 60% less for all remaining enemies Additional Effect: Grants 4 stacks of Wind Attunement\n\nWind Attunement Effect: Gemshine and Precious Brilliance become wind-aspected\n\nDuration: 30s Additional Effect: Grants Garuda's Favor
\n
\nEffect of Garuda's Favor ends upon execution of certain summoner actions.
\n
\n Can only be executed while under the effect of Emerald Arcanum and Carbuncle is summoned.","DescriptionJSON":null,"EffectRange":0,"ID":25807,"IconHD":"/i/002000/002756_hr1.png","Name":"Summon Garuda","PreservesCombo":0,"PrimaryCostType":71,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":116,"SecondaryCostValue":481,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":58,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 440.\n\nCan only be executed while in Dreadwyrm Trance.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25820,"IconHD":"/i/002000/002757_hr1.png","Name":"Astral Impulse","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":79,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":58,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 180 to target and all enemies nearby it.\n\nCan only be executed while in Dreadwyrm Trance.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25821,"IconHD":"/i/002000/002758_hr1.png","Name":"Astral Flare","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":79,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Channel the energies of your active trance or elemental favor to perform one of several actions.\n\nDreadwyrm Trance Effect: Action changes to Deathflare
\nFirebird Trance Effect: Action changes to Rekindle
\nIfrit's Favor Effect: Action changes to Crimson Cyclone
\n
\nTitan's Favor Effect: Action changes to Mountain Buster
\n
\nGaruda's Favor Effect: Action changes to Slipstream","DescriptionJSON":null,"EffectRange":0,"ID":25822,"IconHD":"/i/002000/002759_hr1.png","Name":"Astral Flow","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":73,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":28,"CastType":1,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 510 .\n\nFire Attunement Cost: 1\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25823,"IconHD":"/i/002000/002760_hr1.png","Name":"Ruby Rite","PreservesCombo":0,"PrimaryCostType":72,"PrimaryCostValue":3,"Range":25,"Recast100ms":30,"SecondaryCostType":118,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals earth damage with a potency of 330 . Additional Effect: Grants Titan's Favor
\n
\nEffect of Titan's Favor ends upon execution of certain summoner actions.
\n
\n Earth Attunement Cost: 1\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25824,"IconHD":"/i/002000/002761_hr1.png","Name":"Topaz Rite","PreservesCombo":0,"PrimaryCostType":73,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":119,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals wind damage with a potency of 230 .\n\nWind Attunement Cost: 1\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25825,"IconHD":"/i/002000/002762_hr1.png","Name":"Emerald Rite","PreservesCombo":0,"PrimaryCostType":74,"PrimaryCostValue":3,"Range":25,"Recast100ms":15,"SecondaryCostType":120,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":2,"ClassJobLevel":74,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 120 to target and all enemies nearby it.","DescriptionJSON":null,"EffectRange":5,"ID":25826,"IconHD":"/i/002000/002763_hr1.png","Name":"Tri-disaster","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":126,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":5,"Description":"Restores own or target party member's HP.\n\nCure Potency: 400\n\nAdditional Effect: Grants Rekindle to target\n\nDuration: 30s\n\nRekindle Effect: Healing over time when HP falls below 75% or upon effect duration expiration\n\nCure Potency: 200\n\nDuration: 15s\n\nCan only be executed while in Firebird Trance.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25830,"IconHD":"/i/002000/002764_hr1.png","Name":"Rekindle","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":200,"SecondaryCostType":93,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":7,"Description":"Enters Firebird Trance and summons Demi-Phoenix to fight by your side, which executes Everlasting Flight as it manifests.\n\nDemi-Phoenix will execute Scarlet Flame automatically on the targets attacked by you after summoning.\n\nIncreases enmity in target when Demi-Phoenix is summoned.\n\nDuration: 15s\n\nAdditional Effect: Changes Ruin III to Fountain of Fire and Tri-disaster to Brand of Purgatory\n\nAdditional Effect: Grants Ruby Arcanum, Topaz Arcanum, and Emerald Arcanum\n\nCan only be executed in combat and while Carbuncle is summoned.","DescriptionJSON":null,"EffectRange":0,"ID":25831,"IconHD":"/i/002000/002765_hr1.png","Name":"Summon Phoenix","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":600,"SecondaryCostType":92,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":28,"CastType":2,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 210 to target and all enemies nearby it.\n\nFire Attunement Cost: 1\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25832,"IconHD":"/i/002000/002766_hr1.png","Name":"Ruby Catastrophe","PreservesCombo":0,"PrimaryCostType":72,"PrimaryCostValue":3,"Range":25,"Recast100ms":30,"SecondaryCostType":118,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Deals earth damage with a potency of 140 to target and all enemies nearby it. Additional Effect: Grants Titan's Favor
\n
\nEffect of Titan's Favor ends upon execution of certain summoner actions.
\n
\n Earth Attunement Cost: 1\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25833,"IconHD":"/i/002000/002767_hr1.png","Name":"Topaz Catastrophe","PreservesCombo":0,"PrimaryCostType":73,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":119,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Deals wind damage with a potency of 100 to target and all enemies nearby it.\n\nWind Attunement Cost: 1\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25834,"IconHD":"/i/002000/002768_hr1.png","Name":"Emerald Catastrophe","PreservesCombo":0,"PrimaryCostType":74,"PrimaryCostValue":3,"Range":25,"Recast100ms":15,"SecondaryCostType":120,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":2,"ClassJobLevel":86,"CooldownGroup":58,"Description":"Rushes forward and delivers a fire attack to target and all enemies nearby it with a potency of 430 for the first enemy, and 65% less for all remaining enemies.\n\nCan only be executed while under the effect of Ifrit's Favor.\n\nCannot be executed while bound.\n\n\n\n※Action changes to Crimson Strike upon execution.\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25835,"IconHD":"/i/002000/002769_hr1.png","Name":"Crimson Cyclone","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":2724,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":86,"CooldownGroup":3,"Description":"Deals earth damage to target and all enemies nearby it with a potency of 150 for the first enemy, and 70% less for all remaining enemies.\n\nCan only be executed while under the effect of Titan's Favor.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25836,"IconHD":"/i/002000/002770_hr1.png","Name":"Mountain Buster","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2853,"Range":25,"Recast100ms":10,"SecondaryCostType":32,"SecondaryCostValue":2853,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":30,"CastType":2,"ClassJobLevel":86,"CooldownGroup":58,"Description":"Deals wind damage to target and all enemies nearby it with a potency of 430 for the first enemy, and 65% less for all remaining enemies.\n\nAdditional Effect: Creates a windstorm centered around the target, dealing damage to any enemies who enter\n\nPotency: 30\n\nDuration: 15s\n\nCan only be executed while under the effect of Garuda's Favor.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25837,"IconHD":"/i/002000/002771_hr1.png","Name":"Slipstream","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":35,"SecondaryCostType":32,"SecondaryCostValue":2725,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Summons Ruby Ifrit and orders it to execute Inferno.\n\nInferno Effect: Deals fire damage to target and all enemies within 5 yalms with a potency of 700 for the first enemy, and 60% less for all remaining enemies\n\nAdditional Effect: Grants 2 stacks of Fire Attunement\n\nDuration: 30s\n\nFire Attunement Effect: Gemshine and Precious Brilliance become fire-aspected\n\nAdditional Effect: Grants Ifrit's Favor\n\nEffect of Ifrit's Favor ends upon execution of certain summoner actions.\n\nCan only be executed while under the effect of Ruby Arcanum and Carbuncle is summoned.","DescriptionJSON":null,"EffectRange":0,"ID":25838,"IconHD":"/i/002000/002772_hr1.png","Name":"Summon Ifrit II","PreservesCombo":0,"PrimaryCostType":71,"PrimaryCostValue":1,"Range":25,"Recast100ms":25,"SecondaryCostType":116,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Summons Topaz Titan and orders it to execute Earthen Fury.\n\nEarthen Fury Effect: Deals earth damage to target and all enemies within 5 yalms with a potency of 700 for the first enemy, and 60% less for all remaining enemies\n\nAdditional Effect: Grants 4 stacks of Earth Attunement\n\nDuration: 30s\n\nEarth Attunement Effect: Gemshine and Precious Brilliance become earth-aspected\n\nCan only be executed while under the effect of Topaz Arcanum and Carbuncle is summoned.","DescriptionJSON":null,"EffectRange":0,"ID":25839,"IconHD":"/i/002000/002773_hr1.png","Name":"Summon Titan II","PreservesCombo":0,"PrimaryCostType":71,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":116,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Summons Emerald Garuda and orders it to execute Aerial Blast.\n\nAerial Blast Effect: Deals wind damage to target and all enemies within 5 yalms with a potency of 700 for the first enemy, and 60% less for all remaining enemies\n\nAdditional Effect: Grants 4 stacks of Wind Attunement\n\nDuration: 30s\n\nWind Attunement Effect: Gemshine and Precious Brilliance become wind-aspected\n\nAdditional Effect: Grants Garuda's Favor\n\nEffect of Garuda's Favor ends upon execution of certain summoner actions.\n\nCan only be executed while under the effect of Emerald Arcanum and Carbuncle is summoned.","DescriptionJSON":null,"EffectRange":0,"ID":25840,"IconHD":"/i/002000/002774_hr1.png","Name":"Summon Garuda II","PreservesCombo":0,"PrimaryCostType":71,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":116,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":25835,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":86,"CooldownGroup":58,"Description":"Deals fire damage to target and all enemies nearby it with a potency of 430 for the first enemy, and 65% less for all remaining enemies.\n\nCombo Action: Crimson Cyclone\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25885,"IconHD":"/i/002000/002779_hr1.png","Name":"Crimson Strike","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":3,"Recast100ms":25,"SecondaryCostType":58,"SecondaryCostValue":0,"TargetArea":0}],"28":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":13,"Description":"Restores 20% of maximum MP.\n\nAdditional Effect: Aetherflow III\n\nCan only be executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":166,"IconHD":"/i/000000/000510_hr1.png","Name":"Aetherflow","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":42,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":4,"Description":"Deals unaspected damage with a potency of 100.\n\nAdditional Effect: Absorbs a portion of damage dealt as HP Additional Effect: Increases Faerie Gauge by 10
\n
\n Aetherflow Gauge Cost: 1","DescriptionJSON":null,"EffectRange":0,"ID":167,"IconHD":"/i/000000/000514_hr1.png","Name":"Energy Drain","PreservesCombo":1,"PrimaryCostType":30,"PrimaryCostValue":1,"Range":25,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 300\n\nAdditional Effect: Grants Galvanize to target, nullifying damage equaling 180 % of the amount of HP restored. When critical HP is restored, also grants Catalyze, nullifying damage equaling 180 % the amount of HP restored.\n\nDuration: 30s\n\nEffect cannot be stacked with certain sage barrier effects.","DescriptionJSON":null,"EffectRange":0,"ID":185,"IconHD":"/i/002000/002801_hr1.png","Name":"Adloquium","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":10,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 200\n\nAdditional Effect: Erects a magicked barrier which nullifies damage equaling 160 % of the amount of HP restored\n\nDuration: 30s\n\nEffect cannot be stacked with certain sage barrier effects.","DescriptionJSON":null,"EffectRange":15,"ID":186,"IconHD":"/i/002000/002802_hr1.png","Name":"Succor","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":10,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":7,"ClassJobLevel":50,"CooldownGroup":6,"Description":"Creates a designated area in which party members will only suffer 90% of all damage inflicted.\n\nDuration: 15s Additional Effect: Regen
\n
\nCure Potency: 100
\n
\n Additional Effect: Increases Faerie Gauge by 10
\n
\n Aetherflow Gauge Cost: 1","DescriptionJSON":null,"EffectRange":10,"ID":188,"IconHD":"/i/002000/002804_hr1.png","Name":"Sacred Soil","PreservesCombo":1,"PrimaryCostType":30,"PrimaryCostValue":1,"Range":30,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":1,"Description":"Restores target's HP.\n\nCure Potency: 600 Additional Effect: Increases Faerie Gauge by 10
\n
\n Aetherflow Gauge Cost: 1","DescriptionJSON":null,"EffectRange":0,"ID":189,"IconHD":"/i/002000/002805_hr1.png","Name":"Lustrate","PreservesCombo":1,"PrimaryCostType":30,"PrimaryCostValue":1,"Range":30,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 450","DescriptionJSON":null,"EffectRange":0,"ID":190,"IconHD":"/i/000000/000518_hr1.png","Name":"Physick","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":52,"CooldownGroup":7,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 400 Additional Effect: Increases Faerie Gauge by 10
\n
\n Aetherflow Gauge Cost: 1","DescriptionJSON":null,"EffectRange":15,"ID":3583,"IconHD":"/i/002000/002806_hr1.png","Name":"Indomitability","PreservesCombo":1,"PrimaryCostType":30,"PrimaryCostValue":1,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":54,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 220.","DescriptionJSON":null,"EffectRange":0,"ID":3584,"IconHD":"/i/002000/002807_hr1.png","Name":"Broil","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":184,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":56,"CooldownGroup":20,"Description":"Extends Galvanize effect cast on self or target to nearby party members.\n\nDuration: Time remaining on original effect\n\nNo effect when target is not under the effect of Galvanize.","DescriptionJSON":null,"EffectRange":15,"ID":3585,"IconHD":"/i/002000/002808_hr1.png","Name":"Deployment Tactics","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":58,"CooldownGroup":5,"Description":"Transforms the next Galvanize and Catalyze statuses into HP recovery equaling the amount of damage reduction intended for the barrier.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":3586,"IconHD":"/i/002000/002809_hr1.png","Name":"Emergency Tactics","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":150,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":25,"Description":"Orders your faerie away while granting you a full Aetherflow stack. Also increases healing magic potency by 20%.\n\nDuration: 30s\n\nCurrent faerie will return once the effect expires.\n\nSummon Eos or Summon Selene cannot be executed while under the effect of Dissipation.\n\nCan only be executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":3587,"IconHD":"/i/002000/002810_hr1.png","Name":"Dissipation","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1800,"SecondaryCostType":102,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":62,"CooldownGroup":9,"Description":"Grants self or target party member the effect of Excogitation, restoring HP when member's HP falls below 50% or upon effect duration expiration.\n\nCure Potency: 800\n\nDuration: 45s Additional Effect: Increases Faerie Gauge by 10
\n
\n Aetherflow Gauge Cost: 1","DescriptionJSON":null,"EffectRange":0,"ID":7434,"IconHD":"/i/002000/002813_hr1.png","Name":"Excogitation","PreservesCombo":1,"PrimaryCostType":30,"PrimaryCostValue":1,"Range":30,"Recast100ms":450,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 240.","DescriptionJSON":null,"EffectRange":0,"ID":7435,"IconHD":"/i/002000/002814_hr1.png","Name":"Broil II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":312,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":66,"CooldownGroup":21,"Description":"Increases rate at which target takes critical hits by 10%.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":7436,"IconHD":"/i/002000/002815_hr1.png","Name":"Chain Stratagem","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":3,"Description":"Orders faerie to execute Fey Union with target party member. Effect ends upon reuse.\n\nFaerie Gauge Cost: 10\n\nThe Faerie Gauge increases when a faerie or Seraph is summoned and an Aetherflow action is successfully executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":7437,"IconHD":"/i/002000/002816_hr1.png","Name":"Aetherpact","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":30,"SecondaryCostType":77,"SecondaryCostValue":10,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":20,"CooldownGroup":14,"Description":"Orders faerie to execute Whispering Dawn. If Seraph is summoned, orders her to execute Angel's Whisper. Whispering Dawn /Angel's Whisper Effect: Gradually restores the HP of all nearby party members\n\nCure Potency: 80\n\nDuration: 21s","DescriptionJSON":null,"EffectRange":0,"ID":16537,"IconHD":"/i/002000/002852_hr1.png","Name":"Whispering Dawn","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":40,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":22,"Description":"Orders faerie to execute Fey Illumination. If Seraph is summoned, orders her to execute Seraphic Illumination. Fey Illumination /Seraphic Illumination Effect: Increases healing magic potency of all nearby party members by 10%, while reducing magic damage taken by all nearby party members by 5%\n\nDuration: 20s
\nEffect cannot be stacked with Seraphic Illumination.","DescriptionJSON":null,"EffectRange":0,"ID":16538,"IconHD":"/i/002000/002853_hr1.png","Name":"Fey Illumination","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":40,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":46,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 165 to all nearby enemies.","DescriptionJSON":null,"EffectRange":5,"ID":16539,"IconHD":"/i/002000/002819_hr1.png","Name":"Art of War","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":0,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":492,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals unaspected damage over time.\n\nPotency: 70\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":16540,"IconHD":"/i/002000/002820_hr1.png","Name":"Biolysis","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":311,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 255.","DescriptionJSON":null,"EffectRange":0,"ID":16541,"IconHD":"/i/002000/002821_hr1.png","Name":"Broil III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":491,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":74,"CooldownGroup":15,"Description":"Allows the execution of Adloquium, Succor, Indomitability, or Excogitation without consuming resources while also ensuring critical HP is restored.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":16542,"IconHD":"/i/002000/002822_hr1.png","Name":"Recitation","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":11,"Description":"Orders faerie to execute Fey Blessing.\n\nFey Blessing Effect: Restores the HP of all nearby party members\n\nCure Potency: 320","DescriptionJSON":null,"EffectRange":0,"ID":16543,"IconHD":"/i/002000/002854_hr1.png","Name":"Fey Blessing","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":40,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":23,"Description":"Summons Seraph to fight at your side. When set to guard, automatically casts Seraphic Veil on party members who suffer damage.\n\nCannot summon Seraph unless a pet is already summoned. Current pet will leave the battlefield while Seraph is present, and return once gone.\n\nDuration: 22s\n\n\n\n※Action changes to Consolation upon execution.","DescriptionJSON":null,"EffectRange":0,"ID":16545,"IconHD":"/i/002000/002850_hr1.png","Name":"Summon Seraph","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":40,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":10,"Description":"Orders Seraph to execute Consolation.\n\nConsolation Effect: Restores the HP of all nearby party members\n\nCure Potency: 250\n\nAdditional Effect: Erects a magicked barrier which nullifies damage equaling the amount of HP restored\n\nDuration: 30s\n\nMaximum Charges: 2\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16546,"IconHD":"/i/002000/002851_hr1.png","Name":"Consolation","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":94,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Summons the faerie Eos to fight at your side. When set to guard, automatically casts Embrace on party members who suffer damage.","DescriptionJSON":null,"EffectRange":0,"ID":17215,"IconHD":"/i/002000/002823_hr1.png","Name":"Summon Eos","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":94,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Summons the faerie Selene to fight at your side. When set to guard, automatically casts Embrace on party members who suffer damage.","DescriptionJSON":null,"EffectRange":0,"ID":17216,"IconHD":"/i/002000/002824_hr1.png","Name":"Summon Selene","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":94,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Deals unaspected damage over time.\n\nPotency: 20\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":17864,"IconHD":"/i/000000/000503_hr1.png","Name":"Bio","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":324,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Deals unaspected damage over time.\n\nPotency: 40\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":17865,"IconHD":"/i/000000/000504_hr1.png","Name":"Bio II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":311,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 150.","DescriptionJSON":null,"EffectRange":0,"ID":17869,"IconHD":"/i/000000/000501_hr1.png","Name":"Ruin","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":214,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":38,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 220 .","DescriptionJSON":null,"EffectRange":0,"ID":17870,"IconHD":"/i/000000/000502_hr1.png","Name":"Ruin II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 295.","DescriptionJSON":null,"EffectRange":0,"ID":25865,"IconHD":"/i/002000/002875_hr1.png","Name":"Broil IV","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":491,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 180 to all nearby enemies.","DescriptionJSON":null,"EffectRange":5,"ID":25866,"IconHD":"/i/002000/002876_hr1.png","Name":"Art of War II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":0,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":492,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":86,"CooldownGroup":12,"Description":"Increases maximum HP of a party member or self by 10% and restores the amount increased.\n\nAdditional Effect: Increases HP recovery via healing actions by 10%\n\nDuration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":25867,"IconHD":"/i/002000/002877_hr1.png","Name":"Protraction","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":90,"CooldownGroup":24,"Description":"Grants Expedience and Desperate Measures to all nearby party members.\n\nExpedience Effect: Increases movement speed\n\nDuration: 10s\n\nDesperate Measures Effect: Reduces damage taken by 10%\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":15,"ID":25868,"IconHD":"/i/002000/002878_hr1.png","Name":"Expedient","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"29":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 220 .
\nAdditional Effect: Increases Ninki Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":2240,"IconHD":"/i/000000/000601_hr1.png","Name":"Spinning Edge","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":2,"CooldownGroup":21,"Description":"Create shadows that nullify damage up to 20% of maximum HP.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":2241,"IconHD":"/i/000000/000607_hr1.png","Name":"Shade Shift","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":2240,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 160 .\n\nCombo Action: Spinning Edge\n\nCombo Potency: 320
\nCombo Bonus: Increases Ninki Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":2242,"IconHD":"/i/000000/000602_hr1.png","Name":"Gust Slash","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":10,"CooldownGroup":2,"Description":"Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on enemies 10 levels higher than your own, or certain enemies with special sight. Additional Effect: Restores 2 charges to all mudra
\n
\n The effect of Doton ends upon execution of Hide.
\n
\n Cannot be executed while in combat.\n\nEffect ends upon use of any action other than Sprint, or upon reuse of Hide.","DescriptionJSON":null,"EffectRange":0,"ID":2245,"IconHD":"/i/000000/000609_hr1.png","Name":"Hide","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":38,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Delivers a ranged attack with a potency of 120.
\nAdditional Effect: Increases Ninki Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":2247,"IconHD":"/i/000000/000614_hr1.png","Name":"Throwing Dagger","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":22,"Description":"Delivers an attack with a potency of 150.\n\nAdditional Effect: Increases target's damage taken by 5%\n\nDuration: 20s\n\nAdditional Effect: Increases the chance of additional items being dropped by target if Mug is dealt before, or as, the finishing blow
\nAdditional Effect: Increases Ninki Gauge by 40","DescriptionJSON":null,"EffectRange":0,"ID":2248,"IconHD":"/i/000000/000613_hr1.png","Name":"Mug","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":38,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby enemies.
\nAdditional Effect: Increases Ninki Gauge by 5","DescriptionJSON":null,"EffectRange":5,"ID":2254,"IconHD":"/i/000000/000615_hr1.png","Name":"Death Blossom","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":2242,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 140 . 200 when executed from a target's rear.\n\nCombo Action: Gust Slash\n\nCombo Potency: 380 Rear Combo Potency: 440
\nCombo Bonus: Increases Ninki Gauge by","DescriptionJSON":null,"EffectRange":0,"ID":2255,"IconHD":"/i/000000/000605_hr1.png","Name":"Aeolian Edge","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":10,"Description":"Delivers an attack with a potency of 200.\n\nAdditional Effect: Damage over time\n\nPotency: 90\n\nDuration: 30s Additional Effect: Increases Ninki Gauge by This weaponskill does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":0,"ID":2257,"IconHD":"/i/000000/000606_hr1.png","Name":"Shadow Fang","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":700,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":18,"CooldownGroup":12,"Description":"Delivers an attack with a potency of 300.\n\n400 when executed from a target's rear.\n\nAdditional Effect: Increases damage you deal target by 10%\n\nDuration: 15s\n\nCan only be executed while under the effect of Hidden.","DescriptionJSON":null,"EffectRange":0,"ID":2258,"IconHD":"/i/000000/000618_hr1.png","Name":"Trick Attack","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":600,"SecondaryCostType":35,"SecondaryCostValue":507,"TargetArea":0}],"30":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":10,"Description":"Delivers an attack with a potency of 200.","DescriptionJSON":null,"EffectRange":0,"ID":2246,"IconHD":"/i/000000/000612_hr1.png","Name":"Assassinate","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":600,"SecondaryCostType":63,"SecondaryCostValue":515,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":9,"Description":"Make the ritual mudra hand gesture for “heaven.”\n\nDuration: 6s\n\nMaximum Charges: 2\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\nConversely, execution of weaponskills triggers the cooldown of this action.","DescriptionJSON":null,"EffectRange":0,"ID":2259,"IconHD":"/i/002000/002901_hr1.png","Name":"Ten","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Executes a specific ninjutsu action coinciding with the combination of mudra made immediately beforehand.\n\nIf any other action is used before the mudra are combined and the ninjutsu executed, Ninjutsu will fail.\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\nConversely, execution of weaponskills triggers the cooldown of this action.\n\nRestores 2 charges to all mudra when Hide is executed while outside of combat.","DescriptionJSON":null,"EffectRange":0,"ID":2260,"IconHD":"/i/002000/002904_hr1.png","Name":"Ninjutsu","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":0,"Recast100ms":15,"SecondaryCostType":32,"SecondaryCostValue":496,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":9,"Description":"Make the ritual mudra hand gesture for “earth.”\n\nDuration: 6s\n\nMaximum Charges: 2\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\nConversely, execution of weaponskills triggers the cooldown of this action.","DescriptionJSON":null,"EffectRange":0,"ID":2261,"IconHD":"/i/002000/002902_hr1.png","Name":"Chi","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":7,"ClassJobLevel":40,"CooldownGroup":17,"Description":"Move quickly to the specified location. Maximum Charges: 2
\n
\n Cannot be executed while bound.","DescriptionJSON":null,"EffectRange":1,"ID":2262,"IconHD":"/i/002000/002905_hr1.png","Name":"Shukuchi","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":9,"Description":"Make the ritual mudra hand gesture for “man.”\n\nDuration: 6s\n\nMaximum Charges: 2\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\nConversely, execution of weaponskills triggers the cooldown of this action.","DescriptionJSON":null,"EffectRange":0,"ID":2263,"IconHD":"/i/002000/002903_hr1.png","Name":"Jin","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":14,"Description":"Allows the execution of a single ninjutsu without consumption of mudra charges.\n\nAdditional Effect: Increases damage for the next ninjutsu action by 30%\n\nDuration: 15s\n\nRecast timer of mudra is not affected by the execution of this action.","DescriptionJSON":null,"EffectRange":0,"ID":2264,"IconHD":"/i/002000/002906_hr1.png","Name":"Kassatsu","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Delivers a ranged ninjutsu attack with a potency of 450.\n\nMudra Combination: Any one of the Ten, Chi, or Jin mudra\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":2265,"IconHD":"/i/002000/002907_hr1.png","Name":"Fuma Shuriken","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":25,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 350 to target and all enemies nearby it.\n\nMudra Combination: ChiTen or JinTen\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":2266,"IconHD":"/i/002000/002908_hr1.png","Name":"Katon","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":20,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Deals lightning damage with a potency of 650. Additional Effect: Grants a stack of Raiju Ready
\n
\nDuration: 30s
\n
\nMaximum Stacks: 3
\n
\nEffect of Raiju Ready ends upon execution of any melee weaponskill.
\n
\n Mudra Combination: TenChi or JinChi\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":2267,"IconHD":"/i/002000/002912_hr1.png","Name":"Raiton","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":20,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Deals ice damage with a potency of 350.\n\nAdditional Effect: Bind\n\nDuration: 15s\n\nMudra Combination: TenJin or ChiJin\n\nCancels auto-attack upon execution.\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":2268,"IconHD":"/i/002000/002909_hr1.png","Name":"Hyoton","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":25,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Reduces weaponskill recast time and auto-attack delay by 15%.\n\nDuration: 60s\n\nMudra Combination: JinChiTen or ChiJinTen\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":2269,"IconHD":"/i/002000/002910_hr1.png","Name":"Huton","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":0,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":7,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Creates a patch of corrupted earth, dealing damage with a potency of 80 to any enemies who enter.\n\nDuration: 18s\n\nAdditional Effect: Heavy +40%\n\nMudra Combination: TenJinChi or JinTenChi\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":2270,"IconHD":"/i/002000/002911_hr1.png","Name":"Doton","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":0,"Recast100ms":15,"SecondaryCostType":33,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Deals water damage with a potency of 500.\n\nAdditional Effect: Grants Suiton\n\nDuration: 20s\n\nSuiton Effect: Allows execution of actions which require the effect of Hidden, without being under that effect\n\nMudra Combination: TenChiJin or ChiTenJin\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":2271,"IconHD":"/i/002000/002913_hr1.png","Name":"Suiton","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":20,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Thumpity thump thump, thumpity thump thump...","DescriptionJSON":null,"EffectRange":0,"ID":2272,"IconHD":"/i/002000/002914_hr1.png","Name":"Rabbit Medium","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":0,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":2242,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 140 . 200 when executed from a target's flank.\n\nCombo Action: Gust Slash\n\nCombo Potency: 360 Flank Combo Potency: 420 Combo Bonus: Extends Huton duration by 30s to a maximum of 60s
\nCombo Bonus: Increases Ninki Gauge by","DescriptionJSON":null,"EffectRange":0,"ID":3563,"IconHD":"/i/002000/002915_hr1.png","Name":"Armor Crush","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":56,"CooldownGroup":16,"Description":"Delivers a threefold attack, each hit with a potency of 150.","DescriptionJSON":null,"EffectRange":0,"ID":3566,"IconHD":"/i/002000/002918_hr1.png","Name":"Dream Within a Dream","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":62,"CooldownGroup":1,"Description":"Deals fire damage with a potency of 160 to target and all enemies nearby it.\n\nNinki Gauge Cost: 50\n\nShares a recast timer with Bhavacakra.","DescriptionJSON":null,"EffectRange":6,"ID":7401,"IconHD":"/i/002000/002920_hr1.png","Name":"Hellfrog Medium","PreservesCombo":1,"PrimaryCostType":27,"PrimaryCostValue":50,"Range":25,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":1,"Description":"Deals unaspected damage with a potency of 350. Meisui Bonus: Potency is increased to 500 when under the effect of Meisui
\n
\n Ninki Gauge Cost: 50\n\nShares a recast timer with Hellfrog Medium.","DescriptionJSON":null,"EffectRange":0,"ID":7402,"IconHD":"/i/002000/002921_hr1.png","Name":"Bhavacakra","PreservesCombo":1,"PrimaryCostType":27,"PrimaryCostValue":50,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":20,"Description":"Temporarily converts each of the three mudra into a ninjutsu action. Executing one of these actions will convert the remaining mudra into different ninjutsu actions until all three have been executed or the Ten Chi Jin effect expires.\n\nDuration: 6s\n\nOnly ninjutsu available while active. The same ninjutsu cannot be executed twice.\n\nCannot be executed while under the effect of Kassatsu. Effect ends upon moving.","DescriptionJSON":null,"EffectRange":0,"ID":7403,"IconHD":"/i/002000/002922_hr1.png","Name":"Ten Chi Jin","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":46,"SecondaryCostValue":497,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Perform an emboite.\n\nWhen performed together with other step actions, in sequence, the potency of Standard Finish and Technical Finish is increased.\n\nRecast timer cannot be affected by status effects or gear attributes.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":15999,"IconHD":"/i/003000/003455_hr1.png","Name":"Emboite","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":90,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":16146,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 460.\n\nCombo Action: Gnashing Fang
\nCombo Bonus: Grants Ready to Tear
\n
\nDuration: 10s
\n
\nEffect of Ready to Tear ends upon execution of any weaponskill. ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16147,"IconHD":"/i/003000/003411_hr1.png","Name":"Savage Claw","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":15,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Delivers a critical direct hit with a potency of 320 to all nearby enemies.\n\nAdditional Effect: Reduces the recast time of Infuriate by 5 seconds\n\nBeast Gauge Cost: 50\n\nCan only be executed while under the effect of Nascent Chaos. Effect fades upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":16463,"IconHD":"/i/002000/002566_hr1.png","Name":"Chaotic Cyclone","PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":50,"Range":0,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1897,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Delivers a critical direct hit with a potency of 650.\n\nAdditional Effect: Reduces the recast time of Infuriate by 5 seconds\n\nBeast Gauge Cost: 50\n\nCan only be executed while under the effect of Nascent Chaos. Effect fades upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16465,"IconHD":"/i/002000/002568_hr1.png","Name":"Inner Chaos","PreservesCombo":1,"PrimaryCostType":22,"PrimaryCostValue":50,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1897,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":2254,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":52,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby enemies.\n\nCombo Action: Death Blossom\n\nCombo Potency: 130\n\nCombo Bonus: Extends Huton duration by 10s to a maximum of 60s
\nCombo Bonus: Increases Ninki Gauge by 5","DescriptionJSON":null,"EffectRange":5,"ID":16488,"IconHD":"/i/002000/002923_hr1.png","Name":"Hakke Mujinsatsu","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":72,"CooldownGroup":23,"Description":"Dispels Suiton, increasing the Ninki Gauge by 50. Additional Effect: Increases the potency of Bhavacakra to 500
\n
\nDuration: 30s
\n
\n Can only be executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":16489,"IconHD":"/i/002000/002924_hr1.png","Name":"Meisui","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":507,"Range":0,"Recast100ms":1200,"SecondaryCostType":42,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 600 to target and all enemies nearby it.\n\nMudra Combination: ChiTen or JinTen\n\nCan only be executed while under the effect of Kassatsu.\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":16491,"IconHD":"/i/002000/002925_hr1.png","Name":"Goka Mekkyaku","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":20,"Recast100ms":15,"SecondaryCostType":32,"SecondaryCostValue":497,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Deals ice damage with a potency of 1,300.\n\nMudra Combination: ChiJin or TenJin\n\nCan only be executed while under the effect of Kassatsu.\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16492,"IconHD":"/i/002000/002926_hr1.png","Name":"Hyosho Ranryu","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":25,"Recast100ms":15,"SecondaryCostType":32,"SecondaryCostValue":497,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":15,"Description":"Grants 5 stacks of Bunshin, each stack allowing your shadow to attack enemies each time you execute a weaponskill. Shadow attack potency varies based on the attack executed, but is not affected by combo bonuses.\n\nMelee Attack Potency: 160\n\nRanged Attack Potency: 160\n\nArea Attack Potency: 80\n\nNinki Gauge increases by 5 each time your shadow lands an attack.\n\nDuration: 30s Additional Effect: Grants Phantom Kamaitachi Ready
\n
\nDuration: 45s
\n
\n Ninki Gauge Cost: 50
\n
\n
\n※Action changes to Phantom Kamaitachi upon execution.","DescriptionJSON":null,"EffectRange":0,"ID":16493,"IconHD":"/i/002000/002927_hr1.png","Name":"Bunshin","PreservesCombo":1,"PrimaryCostType":27,"PrimaryCostValue":50,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 420 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Restores own HP\n\nCure Potency: 400\n\nAdditional Effect: Restores MP\n\nCan only be executed while under the effect of Blade of Faith Ready, granted when the effect of Requiescat ends.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25748,"IconHD":"/i/002000/002952_hr1.png","Name":"Blade of Faith","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":3019,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":25748,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 500 for the first enemy, and 50% less for all remaining enemies.\n\nCombo Action: Blade of Faith\n\nCombo Bonus: Restores MP\n\nAdditional Effect: Restores own HP\n\nCure Potency: 400\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25749,"IconHD":"/i/002000/002953_hr1.png","Name":"Blade of Truth","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":25,"SecondaryCostType":58,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":25749,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 580 for the first enemy, and 50% less for all remaining enemies.\n\nCombo Action: Blade of Truth\n\nCombo Bonus: Restores MP\n\nCombo Bonus: Damage over time\n\nPotency: 80 for the first enemy, and 50% less for all remaining enemies\n\nDuration: 21s\n\nAdditional Effect: Restores own HP\n\nCure Potency: 400\n\nDamage over time effect cannot be stacked with that of Goring Blade.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25750,"IconHD":"/i/002000/002954_hr1.png","Name":"Blade of Valor","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":25,"SecondaryCostType":58,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":86,"CooldownGroup":4,"Description":"All enemies standing in the corrupted patch of Salted Earth take additional unaspected damage with a potency of 500 for the first enemy, and 50% less for all remaining enemies.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25755,"IconHD":"/i/003000/003090_hr1.png","Name":"Salt and Darkness","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":32,"SecondaryCostValue":749,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Your shadow deals wind damage to target and all enemies within 5 yalms with a potency of 600 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Extends Huton duration by 10s to a maximum of 60s\n\nAdditional Effect: Increases Ninki Gauge by 10\n\nCan only be executed while under the effect of Phantom Kamaitachi Ready.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25774,"IconHD":"/i/002000/002929_hr1.png","Name":"Phantom Kamaitachi","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":2723,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":86,"CooldownGroup":0,"Description":"All enemies standing in the corrupted earth of Doton take additional earth damage with a potency of 50.\n\nRequires Hakke Mujinsatsu to be executed as a combo action or upon executing Katon, Goka Mekkyaku, or Phantom Kamaitachi.\n\nEffect can only be triggered while Doton is active.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25776,"IconHD":"/i/002000/002930_hr1.png","Name":"Hollow Nozuchi","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":100,"Recast100ms":0,"SecondaryCostType":32,"SecondaryCostValue":501,"TargetArea":1},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Rushes target and delivers a lightning attack with a potency of 560.\n\nAdditional Effect: Increases Ninki Gauge by 5\n\nCan only be executed while under the effect of Raiju Ready.\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":25777,"IconHD":"/i/002000/002931_hr1.png","Name":"Forked Raiju","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":2690,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Deals lightning damage with a potency of 560.\n\nAdditional Effect: Increases Ninki Gauge by 5\n\nCan only be executed while under the effect of Raiju Ready.","DescriptionJSON":null,"EffectRange":0,"ID":25778,"IconHD":"/i/002000/002932_hr1.png","Name":"Fleeting Raiju","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":2690,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":86,"CooldownGroup":0,"Description":"Delivers an attack with a potency of 780.\n\nPotency increases as Battery Gauge exceeds required cost at time of deployment.\n\nThe Automaton Queen shuts down after execution. If this action is not used manually while the Automaton Queen is active, it will be triggered automatically immediately before shutting down.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25787,"IconHD":"/i/003000/003047_hr1.png","Name":"Crowned Collider","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":3,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 200.\n\nAdditional Effect: Grants Huton\n\nDuration: 60s
\nAdditional Effect: Increases Ninki Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":25876,"IconHD":"/i/002000/002928_hr1.png","Name":"Huraijin","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"31":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Delivers a ranged ninjutsu attack with a potency of 450.\n\nMudra Combination: Any one of the Ten, Chi, or Jin mudra\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":2265,"IconHD":"/i/002000/002907_hr1.png","Name":"Fuma Shuriken","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":25,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":4,"Description":"Deploys a single-target battle turret which attacks using Volley Fire, dealing damage with a potency of 70.\n\nBattery Gauge Cost: 50\n\nDuration increases as Battery Gauge exceeds required cost at time of deployment, up to a maximum of 15 seconds.\n\nConsumes Battery Gauge upon execution.\n\nShuts down when time expires or upon execution of Rook Overdrive.\n\nShares a recast timer with Rook Overdrive.","DescriptionJSON":null,"EffectRange":0,"ID":2864,"IconHD":"/i/003000/003026_hr1.png","Name":"Rook Autoturret","PreservesCombo":1,"PrimaryCostType":62,"PrimaryCostValue":50,"Range":0,"Recast100ms":60,"SecondaryCostType":101,"SecondaryCostValue":50,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 140.
\nAdditional Effect: Increases Heat Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":2866,"IconHD":"/i/003000/003001_hr1.png","Name":"Split Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":288,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":2866,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Split Shot or Heated Split Shot\n\nCombo Potency: 210
\nCombo Bonus: Increases Heat Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":2868,"IconHD":"/i/003000/003002_hr1.png","Name":"Slug Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":289,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":18,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 140 to all enemies in a cone before you.
\nAdditional Effect: Increases Heat Gauge by 5","DescriptionJSON":null,"EffectRange":12,"ID":2870,"IconHD":"/i/003000/003014_hr1.png","Name":"Spread Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":12,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":449,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":8,"Description":"Delivers an attack with a potency of 240.
\nAdditional Effect: Increases Battery Gauge by 20 This weaponskill does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":0,"ID":2872,"IconHD":"/i/003000/003003_hr1.png","Name":"Hot Shot","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":400,"SecondaryCostType":63,"SecondaryCostValue":291,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":2868,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Slug Shot or Heated Slug Shot\n\nCombo Potency: 270
\nCombo Bonus: Increases Heat Gauge by 5
\nCombo Bonus: Increases Battery Gauge by 10","DescriptionJSON":null,"EffectRange":0,"ID":2873,"IconHD":"/i/003000/003004_hr1.png","Name":"Clean Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":290,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":10,"Description":"Delivers an attack with a potency of 120.\n\nMaximum Charges: 3","DescriptionJSON":null,"EffectRange":0,"ID":2874,"IconHD":"/i/003000/003005_hr1.png","Name":"Gauss Round","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":10,"CooldownGroup":22,"Description":"Guarantees that next weaponskill is a critical direct hit.\n\nDuration: 5s\n\nThis action does not affect damage over time effects.
\nMaximum Charges: 2","DescriptionJSON":null,"EffectRange":0,"ID":2876,"IconHD":"/i/003000/003022_hr1.png","Name":"Reassemble","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":550,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":20,"Description":"Covers target's body in a slow-burning pitch. Action is changed to Detonator for the duration of the effect.\n\nDeals damage when time expires or upon executing Detonator.\n\nPotency is increased by 220 for each of your own weaponskills you land prior to the end of the effect.\n\nDuration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":2878,"IconHD":"/i/003000/003018_hr1.png","Name":"Wildfire","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":50,"CooldownGroup":11,"Description":"Deals damage to all nearby enemies with a potency of 120 for the first enemy, and 50% less for all remaining enemies.\n\nMaximum Charges: 3","DescriptionJSON":null,"EffectRange":5,"ID":2890,"IconHD":"/i/003000/003017_hr1.png","Name":"Ricochet","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":52,"CooldownGroup":1,"Description":"Delivers an attack to the target. Potency varies with number of Repertoire stacks.\n\n1 Repertoire Stack: 100\n\n2 Repertoire Stacks: 220\n\n3 Repertoire Stacks: 360\n\nCan only be executed when the Wanderer's Minuet is active.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7404,"IconHD":"/i/002000/002611_hr1.png","Name":"Pitch Perfect","PreservesCombo":1,"PrimaryCostType":32,"PrimaryCostValue":1,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 180.\n\nAdditional Effect: Reduces the recast time of both Gauss Round and Ricochet by 15s\n\nCan only be executed when firearm is Overheated.\n\nRecast timer cannot be affected by status effects or gear attributes.","DescriptionJSON":null,"EffectRange":0,"ID":7410,"IconHD":"/i/003000/003030_hr1.png","Name":"Heat Blast","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":69,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 200 .
\nAdditional Effect: Increases Heat Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":7411,"IconHD":"/i/003000/003031_hr1.png","Name":"Heated Split Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":2866,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 120 .\n\nCombo Action: Heated Split Shot\n\nCombo Potency: 280
\nCombo Bonus: Increases Heat Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":7412,"IconHD":"/i/003000/003032_hr1.png","Name":"Heated Slug Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":2868,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 110 .\n\nCombo Action: Heated Slug Shot\n\nCombo Potency: 360
\nCombo Bonus: Increases Heat Gauge by 5
\nCombo Bonus: Increases Battery Gauge by 10","DescriptionJSON":null,"EffectRange":0,"ID":7413,"IconHD":"/i/003000/003033_hr1.png","Name":"Heated Clean Shot","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":66,"CooldownGroup":21,"Description":"Increases Heat Gauge by 50.\n\nCan only be executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":7414,"IconHD":"/i/003000/003034_hr1.png","Name":"Barrel Stabilizer","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":42,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":4,"Description":"Orders the rook autoturret to use Rook Overload.\n\nRook Overload Potency: 320\n\nPotency increases as Battery Gauge exceeds required cost at time of deployment.\n\nThe rook autoturret shuts down after execution. If this action is not used manually while the rook autoturret is active, it will be triggered automatically immediately before shutting down.\n\nShares a recast timer with Rook Autoturret.","DescriptionJSON":null,"EffectRange":0,"ID":7415,"IconHD":"/i/003000/003035_hr1.png","Name":"Rook Overdrive","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":150,"SecondaryCostType":40,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":0,"Description":"Delivers an attack with a potency of 320.\n\nPotency increases as Battery Gauge exceeds required cost at time of deployment.\n\nThe rook autoturret shuts down after execution. If this action is not used manually while the rook autoturret is active, it will be triggered automatically immediately before shutting down.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7416,"IconHD":"/i/003000/003036_hr1.png","Name":"Rook Overload","PreservesCombo":0,"PrimaryCostType":2,"PrimaryCostValue":0,"Range":40,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":13,"Description":"Delivers damage over time to all enemies in a cone before you.\n\nPotency: 80\n\nDuration: 10s\n\nEffect ends upon using another action or moving (including facing a different direction).\n\nCancels auto-attack upon execution.\n\nTriggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.","DescriptionJSON":null,"EffectRange":8,"ID":7418,"IconHD":"/i/003000/003038_hr1.png","Name":"Flamethrower","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Perform a pirouette.\n\nWhen performed together with other step actions, in sequence, the potency of Standard Finish and Technical Finish is increased.\n\nRecast timer cannot be affected by status effects or gear attributes.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16002,"IconHD":"/i/003000/003458_hr1.png","Name":"Pirouette","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":90,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.\n\n0 Steps: 360\n\n1 Step: 540\n\n2 Steps: 720 Step Bonus: Grants Standard Finish and Esprit to self and party member designated as your Dance Partner Damage bonus of Standard Finish varies with number of successful steps.\n\n1 Step: 2%\n\n2 Steps: 5%\n\nDuration: 60s\n\nRecast timer cannot be affected by status effects or gear attributes.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":16003,"IconHD":"/i/003000/003459_hr1.png","Name":"Standard Finish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.\n\n0 Steps: 360\n\n1 Step: 540\n\n2 Steps: 720 Step Bonus: Grants Standard Finish and Esprit to self and party member designated as your Dance Partner Damage bonus of Standard Finish varies with number of successful steps.\n\n1 Step: 2%\n\n2 Steps: 5%\n\nDuration: 60s\n\nRecast timer cannot be affected by status effects or gear attributes.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":16191,"IconHD":"/i/003000/003459_hr1.png","Name":"Single Standard Finish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":2,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.\n\n0 Steps: 360\n\n1 Step: 540\n\n2 Steps: 720 Step Bonus: Grants Standard Finish and Esprit to self and party member designated as your Dance Partner Damage bonus of Standard Finish varies with number of successful steps.\n\n1 Step: 2%\n\n2 Steps: 5%\n\nDuration: 60s\n\nRecast timer cannot be affected by status effects or gear attributes.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":16192,"IconHD":"/i/003000/003459_hr1.png","Name":"Double Standard Finish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":3,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":52,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 140 to all enemies in a cone before you.\n\nCan only be executed when firearm is Overheated.\n\nRecast timer cannot be affected by status effects or gear attributes.","DescriptionJSON":null,"EffectRange":12,"ID":16497,"IconHD":"/i/003000/003042_hr1.png","Name":"Auto Crossbow","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":12,"Recast100ms":25,"SecondaryCostType":69,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":58,"CooldownGroup":7,"Description":"Delivers an attack with a potency of 580. Shares a recast timer with Bioblaster.","DescriptionJSON":null,"EffectRange":0,"ID":16498,"IconHD":"/i/003000/003043_hr1.png","Name":"Drill","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":72,"CooldownGroup":7,"Description":"Delivers an attack with a potency of 50 to all enemies in a cone before you.\n\nAdditional Effect: Damage over time\n\nPotency: 50\n\nDuration: 15s\n\nShares a recast timer with Drill.","DescriptionJSON":null,"EffectRange":12,"ID":16499,"IconHD":"/i/003000/003044_hr1.png","Name":"Bioblaster","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":12,"Recast100ms":200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":9,"Description":"Delivers an attack with a potency of 580.\n\nAdditional Effect: Increases Battery Gauge by 20\n\nThis weaponskill does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":0,"ID":16500,"IconHD":"/i/003000/003045_hr1.png","Name":"Air Anchor","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":400,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":2,"Description":"Deploys an Automaton Queen to fight at your side.\n\nBattery Gauge Cost: 50\n\nDuration increases as Battery Gauge exceeds minimum cost at time of deployment, up to a maximum of 20 seconds.\n\nConsumes Battery Gauge upon execution.\n\nShuts down when time expires or upon execution of Queen Overdrive.\n\nShares a recast timer with Queen Overdrive.","DescriptionJSON":null,"EffectRange":0,"ID":16501,"IconHD":"/i/003000/003501_hr1.png","Name":"Automaton Queen","PreservesCombo":1,"PrimaryCostType":62,"PrimaryCostValue":50,"Range":0,"Recast100ms":60,"SecondaryCostType":97,"SecondaryCostValue":50,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":2,"Description":"Orders the Automaton Queen to use Pile Bunker.\n\nPile Bunker Potency: 680\n\nPotency increases as Battery Gauge exceeds required cost at time of deployment.\n\nThe Automaton Queen shuts down after execution. If this action is not used manually while the Automaton Queen is active, it will be triggered automatically immediately before shutting down.\n\nShares a recast timer with Automaton Queen.","DescriptionJSON":null,"EffectRange":0,"ID":16502,"IconHD":"/i/003000/003502_hr1.png","Name":"Queen Overdrive","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":150,"SecondaryCostType":40,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":0,"Description":"Delivers an attack with a potency of 680.\n\nPotency increases as Battery Gauge exceeds required cost at time of deployment. If this action is not used manually while the Automaton Queen is active, it will be triggered automatically immediately before shutting down.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16503,"IconHD":"/i/003000/003503_hr1.png","Name":"Pile Bunker","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":3,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 120.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16504,"IconHD":"/i/003000/003504_hr1.png","Name":"Arm Punch","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":3,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":1,"Description":"Ends the effect of Wildfire, dealing damage to the target.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16766,"IconHD":"/i/003000/003039_hr1.png","Name":"Detonator","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":10,"SecondaryCostType":32,"SecondaryCostValue":1946,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":56,"CooldownGroup":24,"Description":"Reduces damage taken by self and nearby party members by 10%.\n\nDuration: 15s\n\nEffect cannot be stacked with bard's Troubadour or dancer's Shield Samba.","DescriptionJSON":null,"EffectRange":20,"ID":16889,"IconHD":"/i/003000/003040_hr1.png","Name":"Tactician","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Rushes target and delivers an attack with a potency of 240.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":17206,"IconHD":"/i/003000/003505_hr1.png","Name":"Roller Dash","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":30,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":5,"Description":"Releases the energy building in your firearm, causing it to become Overheated, increasing the potency of single-target weaponskills by 20.\n\nDuration: 8s\n\nHeat Gauge Cost: 50\n\nOverheated effect only applicable to machinist job actions.","DescriptionJSON":null,"EffectRange":0,"ID":17209,"IconHD":"/i/003000/003041_hr1.png","Name":"Hypercharge","PreservesCombo":1,"PrimaryCostType":61,"PrimaryCostValue":50,"Range":0,"Recast100ms":100,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":86,"CooldownGroup":58,"Description":"Delivers an attack to all enemies in a straight line before you with a potency of 600 for the first enemy, and 60% less for all remaining enemies.\n\nCan only be executed while under the effect of Blast Arrow Ready.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":25,"ID":25784,"IconHD":"/i/002000/002621_hr1.png","Name":"Blast Arrow","PreservesCombo":0,"PrimaryCostType":10,"PrimaryCostValue":2692,"Range":25,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":2692,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 150 to all enemies in a cone before you.\n\nAdditional Effect: Increases Heat Gauge by 10","DescriptionJSON":null,"EffectRange":12,"ID":25786,"IconHD":"/i/003000/003046_hr1.png","Name":"Scattergun","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":12,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":86,"CooldownGroup":0,"Description":"Delivers an attack with a potency of 780.\n\nPotency increases as Battery Gauge exceeds required cost at time of deployment.\n\nThe Automaton Queen shuts down after execution. If this action is not used manually while the Automaton Queen is active, it will be triggered automatically immediately before shutting down.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25787,"IconHD":"/i/003000/003047_hr1.png","Name":"Crowned Collider","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":3,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":90,"CooldownGroup":12,"Description":"Delivers an attack to all enemies in a straight line before you with a potency of 580 for the first enemy, and 65% less for all remaining enemies.\n\nAdditional Effect: Increases Battery Gauge by 20\n\nThis weaponskill does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":25,"ID":25788,"IconHD":"/i/003000/003048_hr1.png","Name":"Chain Saw","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"32":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 170 .","DescriptionJSON":null,"EffectRange":0,"ID":3617,"IconHD":"/i/003000/003051_hr1.png","Name":"Hard Slash","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":6,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 120 to all nearby enemies.","DescriptionJSON":null,"EffectRange":5,"ID":3621,"IconHD":"/i/003000/003063_hr1.png","Name":"Unleash","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":3617,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 120 .\n\nCombo Action: Hard Slash\n\nCombo Potency: 260 Combo Bonus: Restores MP","DescriptionJSON":null,"EffectRange":0,"ID":3623,"IconHD":"/i/003000/003054_hr1.png","Name":"Syphon Strike","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 150.\n\nAdditional Effect: Increased enmity
\nAdditional Effect: Reduces the recast time of Plunge by 5 seconds","DescriptionJSON":null,"EffectRange":0,"ID":3624,"IconHD":"/i/003000/003062_hr1.png","Name":"Unmend","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":12,"Description":"Grants 5 stacks of Blood Weapon, each stack increasing Blood Gauge by 10 and restoring MP upon landing weaponskills or spells.\n\nDuration: 15s\n\nEffect does not stack when hitting multiple targets with a single attack.","DescriptionJSON":null,"EffectRange":0,"ID":3625,"IconHD":"/i/003000/003071_hr1.png","Name":"Blood Weapon","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":10,"CooldownGroup":2,"Description":"Significantly increases enmity generation.\n\nEffect ends upon reuse.","DescriptionJSON":null,"EffectRange":0,"ID":3629,"IconHD":"/i/003000/003070_hr1.png","Name":"Grit","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":30,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":3623,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 120 .\n\nCombo Action: Syphon Strike\n\nCombo Potency: 340 Combo Bonus: Restores own HP\n\nCure Potency: 300
\nCombo Bonus: Increases Blood Gauge by 20","DescriptionJSON":null,"EffectRange":0,"ID":3632,"IconHD":"/i/003000/003055_hr1.png","Name":"Souleater","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":13,"Description":"Reduces magic vulnerability by 20%.\n\nDuration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":3634,"IconHD":"/i/003000/003076_hr1.png","Name":"Dark Mind","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":38,"CooldownGroup":21,"Description":"Reduces damage taken by 30%.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":3636,"IconHD":"/i/003000/003075_hr1.png","Name":"Shadow Wall","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":24,"Description":"Grants the effect of Living Dead.\n\nWhen HP is reduced to 0 while under the effect of Living Dead, instead of becoming KO'd, your status will change to Walking Dead.\n\nLiving Dead Duration: 10s\n\nAdditional Effect: Restores HP with each weaponskill successfully delivered or spell cast\n\nCure Potency: 1500\n\nWhile under the effect of Walking Dead, most attacks will not lower your HP below 1. If, before the Walking Dead timer runs out, an amount of HP totaling your maximum HP is restored, the effect will change to Undead Rebirth. If this amount is not restored, you will be KO'd.\n\nWalking Dead Duration: 10s\n\nWhile under the effect of Undead Rebirth, most attacks will not lower your HP below 1.\n\nUndead Rebirth Duration: Time remaining on Walking Dead","DescriptionJSON":null,"EffectRange":0,"ID":3638,"IconHD":"/i/003000/003077_hr1.png","Name":"Living Dead","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":3000,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":52,"CooldownGroup":16,"Description":"Creates a patch of salted earth at your feet, dealing unaspected damage with a potency of 50 to any enemies who enter.\n\nDuration: 15s
\n
\n
\n※Action changes to Salt and Darkness upon execution.","DescriptionJSON":null,"EffectRange":5,"ID":3639,"IconHD":"/i/003000/003066_hr1.png","Name":"Salted Earth","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":10,"Description":"Delivers a jumping attack with a potency of 150. Maximum Charges: 2
\n
\n Cannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":3640,"IconHD":"/i/003000/003061_hr1.png","Name":"Plunge","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":56,"CooldownGroup":14,"Description":"Deals unaspected damage with a potency of 150 to target and all enemies nearby it.\n\nAdditional Effect: Restores own HP\n\nCure Potency: 200\n\nAdditional Effect: Restores MP\n\nShares a recast timer with Carve and Spit.","DescriptionJSON":null,"EffectRange":5,"ID":3641,"IconHD":"/i/003000/003064_hr1.png","Name":"Abyssal Drain","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":14,"Description":"Delivers a threefold attack with a potency of 510.\n\nAdditional Effect: Restores MP\n\nShares a recast timer with Abyssal Drain.","DescriptionJSON":null,"EffectRange":0,"ID":3643,"IconHD":"/i/003000/003058_hr1.png","Name":"Carve and Spit","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":11,"Description":"Grants 3 stacks of Delirium, each stack allowing the execution of Quietus or Bloodspiller without Blackblood cost, restoring MP when landing either weaponskill.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":7390,"IconHD":"/i/003000/003078_hr1.png","Name":"Delirium","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 200 to all nearby enemies.\n\nBlood Gauge Cost: 50","DescriptionJSON":null,"EffectRange":5,"ID":7391,"IconHD":"/i/003000/003079_hr1.png","Name":"Quietus","PreservesCombo":1,"PrimaryCostType":25,"PrimaryCostValue":50,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":62,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 500.\n\nBlood Gauge Cost: 50","DescriptionJSON":null,"EffectRange":0,"ID":7392,"IconHD":"/i/003000/003080_hr1.png","Name":"Bloodspiller","PreservesCombo":1,"PrimaryCostType":25,"PrimaryCostValue":50,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":3,"Description":"Creates a barrier around self or target party member that absorbs damage totaling 25% of target's maximum HP.\n\nDuration: 7s\n\nGrants Dark Arts when barrier is completely absorbed.\n\nDark Arts Effect: Consume Dark Arts instead of MP to execute Edge of Shadow or Flood of Shadow","DescriptionJSON":null,"EffectRange":0,"ID":7393,"IconHD":"/i/003000/003081_hr1.png","Name":"The Blackest Night","PreservesCombo":1,"PrimaryCostType":3,"PrimaryCostValue":30,"Range":30,"Recast100ms":150,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":30,"CooldownGroup":1,"Description":"Deals unaspected damage with a potency of 100 to all enemies in a straight line before you.\n\nAdditional Effect: Grants Darkside, increasing damage dealt by 10%\n\nDuration: 30s\n\nExtends Darkside duration by 30s to a maximum of 60s.\n\nShares a recast timer with Edge of Darkness.","DescriptionJSON":null,"EffectRange":10,"ID":16466,"IconHD":"/i/003000/003082_hr1.png","Name":"Flood of Darkness","PreservesCombo":1,"PrimaryCostType":3,"PrimaryCostValue":30,"Range":10,"Recast100ms":10,"SecondaryCostType":63,"SecondaryCostValue":271,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":1,"Description":"Deals unaspected damage with a potency of 300.\n\nAdditional Effect: Grants Darkside, increasing damage dealt by 10%\n\nDuration: 30s\n\nExtends Darkside duration by 30s to a maximum of 60s.\n\nShares a recast timer with Flood of Darkness.","DescriptionJSON":null,"EffectRange":0,"ID":16467,"IconHD":"/i/003000/003083_hr1.png","Name":"Edge of Darkness","PreservesCombo":1,"PrimaryCostType":3,"PrimaryCostValue":30,"Range":"-1","Recast100ms":10,"SecondaryCostType":63,"SecondaryCostValue":271,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":3621,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 100 to all nearby enemies.\n\nCombo Action: Unleash\n\nCombo Potency: 140\n\nCombo Bonus: Restores MP
\nCombo Bonus: Increases Blood Gauge by 20","DescriptionJSON":null,"EffectRange":5,"ID":16468,"IconHD":"/i/003000/003084_hr1.png","Name":"Stalwart Soul","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":74,"CooldownGroup":1,"Description":"Deals unaspected damage with a potency of 160 to all enemies in a straight line before you.\n\nAdditional Effect: Grants Darkside, increasing damage dealt by 10%\n\nDuration: 30s\n\nExtends Darkside duration by 30s to a maximum of 60s.\n\nShares a recast timer with Edge of Shadow.","DescriptionJSON":null,"EffectRange":10,"ID":16469,"IconHD":"/i/003000/003085_hr1.png","Name":"Flood of Shadow","PreservesCombo":1,"PrimaryCostType":3,"PrimaryCostValue":30,"Range":10,"Recast100ms":10,"SecondaryCostType":62,"SecondaryCostValue":271,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":74,"CooldownGroup":1,"Description":"Deals unaspected damage with a potency of 460.\n\nAdditional Effect: Grants Darkside, increasing damage dealt by 10%\n\nDuration: 30s\n\nExtends Darkside duration by 30s to a maximum of 60s.\n\nShares a recast timer with Flood of Shadow.","DescriptionJSON":null,"EffectRange":0,"ID":16470,"IconHD":"/i/003000/003086_hr1.png","Name":"Edge of Shadow","PreservesCombo":1,"PrimaryCostType":3,"PrimaryCostValue":30,"Range":"-1","Recast100ms":10,"SecondaryCostType":62,"SecondaryCostValue":271,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":76,"CooldownGroup":18,"Description":"Reduces magic damage taken by self and nearby party members by 10%.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":15,"ID":16471,"IconHD":"/i/003000/003087_hr1.png","Name":"Dark Missionary","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":22,"Description":"Conjure a simulacrum of your darkside to fight alongside you.\n\nSimulacrum Attack Potency: 300 Duration: 24s\n\nBlood Gauge Cost: 50 Additional Effect: Simulacrum is able to execute Shadowbringer, delivering an attack to all enemies in a straight line before it with a potency of 450 for the first enemy, and 25% less for all remaining enemies.","DescriptionJSON":null,"EffectRange":0,"ID":16472,"IconHD":"/i/003000/003088_hr1.png","Name":"Living Shadow","PreservesCombo":1,"PrimaryCostType":25,"PrimaryCostValue":50,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":82,"CooldownGroup":23,"Description":"Reduces damage taken by a party member or self by 10%.\n\nDuration: 10s\n\nMaximum Charges: 2","DescriptionJSON":null,"EffectRange":0,"ID":25754,"IconHD":"/i/003000/003089_hr1.png","Name":"Oblation","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":86,"CooldownGroup":4,"Description":"All enemies standing in the corrupted patch of Salted Earth take additional unaspected damage with a potency of 500 for the first enemy, and 50% less for all remaining enemies.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25755,"IconHD":"/i/003000/003090_hr1.png","Name":"Salt and Darkness","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":32,"SecondaryCostValue":749,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":90,"CooldownGroup":20,"Description":"Deals unaspected damage to all enemies in a straight line before you with a potency of 600 for the first enemy, and 50% less for all remaining enemies.\n\nMaximum Charges: 2\n\nCan only be executed while under the effect of Darkside.","DescriptionJSON":null,"EffectRange":10,"ID":25757,"IconHD":"/i/003000/003091_hr1.png","Name":"Shadowbringer","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":10,"Recast100ms":600,"SecondaryCostType":123,"SecondaryCostValue":0,"TargetArea":0}],"33":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies with a potency of 600 for the first enemy, and 70% less for all remaining enemies.\n\nAdditional Effect: Opens the Lunar Nadi\n\nAdditional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form\n\nDuration: 30s\n\nAny additional effects associated with the executed action will also be applied.\n\nCan only be executed while under the effect of three of the same Beast Chakra.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":3545,"IconHD":"/i/002000/002533_hr1.png","Name":"Elixir Field","PreservesCombo":1,"PrimaryCostType":79,"PrimaryCostValue":4,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 340 .\n\nCan only be executed while in combat and under the effect of the Fifth Chakra. The five chakra close upon execution.\n\nShares a recast timer with Enlightenment .\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":3547,"IconHD":"/i/002000/002535_hr1.png","Name":"the Forbidden Chakra","PreservesCombo":1,"PrimaryCostType":28,"PrimaryCostValue":5,"Range":"-1","Recast100ms":10,"SecondaryCostType":42,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":12,"Description":"Draws a card (arcanum) from your divining deck. Only one arcanum can be drawn at a time.\n\nArcanum effect can be triggered using the action Play.\n\nAdditional Effect: Restores 5% of maximum MP Additional Effect: Grants Clarifying Draw, allowing the execution of Redraw
\n
\n Maximum Charges: 2","DescriptionJSON":null,"EffectRange":0,"ID":3590,"IconHD":"/i/003000/003101_hr1.png","Name":"Draw","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":6,"Description":"Draws a different arcanum from your deck.\n\nCan only be executed while under the effect of Clarifying Draw.","DescriptionJSON":null,"EffectRange":0,"ID":3593,"IconHD":"/i/003000/003105_hr1.png","Name":"Redraw","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2713,"Range":0,"Recast100ms":10,"SecondaryCostType":52,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 500
\nAdditional Effect: 15% chance next Benefic II will restore critical HP
\n
\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":3594,"IconHD":"/i/003000/003126_hr1.png","Name":"Benefic","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":34,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 250 Additional Effect: Regen\n\nCure Potency: 250 Duration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":3595,"IconHD":"/i/003000/003127_hr1.png","Name":"Aspected Benefic","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 150.","DescriptionJSON":null,"EffectRange":0,"ID":3596,"IconHD":"/i/003000/003120_hr1.png","Name":"Malefic","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":187,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":54,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 160.","DescriptionJSON":null,"EffectRange":0,"ID":3598,"IconHD":"/i/003000/003122_hr1.png","Name":"Malefic II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":188,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Deals unaspected damage over time.\n\nPotency: 40\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":3599,"IconHD":"/i/003000/003124_hr1.png","Name":"Combust","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":186,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":2,"ClassJobLevel":10,"CooldownGroup":58,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 400","DescriptionJSON":null,"EffectRange":15,"ID":3600,"IconHD":"/i/003000/003129_hr1.png","Name":"Helios","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":7,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":2,"ClassJobLevel":42,"CooldownGroup":58,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 250 Additional Effect: Regen\n\nCure Potency: 150 Duration: 15s","DescriptionJSON":null,"EffectRange":15,"ID":3601,"IconHD":"/i/003000/003130_hr1.png","Name":"Aspected Helios","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":8,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":80,"CastType":1,"ClassJobLevel":12,"CooldownGroup":58,"Description":"Resurrects target to a weakened state.","DescriptionJSON":null,"EffectRange":0,"ID":3603,"IconHD":"/i/003000/003132_hr1.png","Name":"Ascend","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":24,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":5,"Description":"Adds Regen to certain actions.
\nCannot be used with Nocturnal Sect.
\n
\nShares a recast timer with Nocturnal Sect.
\n
\nEffect cannot be removed while in combat. Effect ends upon reuse.","DescriptionJSON":null,"EffectRange":0,"ID":3604,"IconHD":"/i/003000/003133_hr1.png","Name":"Diurnal Sect","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":50,"SecondaryCostType":55,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":5,"Description":"Adds a damage-nullifying barrier to certain actions. Also increases MP cost of Aspected Benefic.\n\nCannot be used with Diurnal Sect.\n\nShares a recast timer with Diurnal Sect.\n\nEffect cannot be removed while in combat.\n\nEffect ends upon reuse.","DescriptionJSON":null,"EffectRange":0,"ID":3605,"IconHD":"/i/003000/003134_hr1.png","Name":"Nocturnal Sect","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":50,"SecondaryCostType":55,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":6,"CooldownGroup":19,"Description":"Reduces cast times for spells by 2.5 seconds.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":3606,"IconHD":"/i/003000/003135_hr1.png","Name":"Lightspeed","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":46,"CooldownGroup":58,"Description":"Deals unaspected damage over time.\n\nPotency: 50\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":3608,"IconHD":"/i/003000/003125_hr1.png","Name":"Combust II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":314,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 800","DescriptionJSON":null,"EffectRange":0,"ID":3610,"IconHD":"/i/003000/003128_hr1.png","Name":"Benefic II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":7,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":20,"Description":"Generate an aetheric bond with target party member. Each time you cast a single-target healing spell on yourself or a party member, the party member with whom you have the bond will also recover HP equaling 40% of the original spell.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":3612,"IconHD":"/i/003000/003139_hr1.png","Name":"Synastry","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":7,"ClassJobLevel":58,"CooldownGroup":18,"Description":"Creates a celestial ring around the caster.\n\nAdditional Effect: Reduces damage taken by 10% and applies Wheel of Fortune to self and any party members who enter\n\nDuration: 18s\n\nWheel of Fortune Effect: Regen\n\nCure Potency: 100\n\nDuration: 15s\n\nEffect ends upon using another action or moving (including facing a different direction).\n\nCancels auto-attack upon execution.","DescriptionJSON":null,"EffectRange":8,"ID":3613,"IconHD":"/i/003000/003140_hr1.png","Name":"Collective Unconscious","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":11,"Description":"Restores target's HP.\n\nCure Potency: 400\n\nPotency increases up to 900 as the target's HP decreases, reaching its maximum value when the target has 30% HP or less.
\nMaximum Charges: 2","DescriptionJSON":null,"EffectRange":0,"ID":3614,"IconHD":"/i/003000/003141_hr1.png","Name":"Essential Dignity","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":400,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":2,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 120 to target and all enemies nearby it.","DescriptionJSON":null,"EffectRange":5,"ID":3615,"IconHD":"/i/003000/003123_hr1.png","Name":"Gravity","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":498,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":7,"ClassJobLevel":62,"CooldownGroup":14,"Description":"Deploys an Earthly Star in the designated area and grants the effect of Earthly Dominance.\n\nDuration: 10s\n\nExecuting Stellar Detonation while under the effect of Earthly Dominance creates a Stellar Burst dealing unaspected damage with a potency of 205 to all nearby enemies. Also restores own HP and the HP of all nearby party members.\n\nCure Potency: 540\n\nAfter 10s, Earthly Dominance effect is changed to Giant Dominance.\n\nDuration: 10s\n\nWaiting 10s or executing Stellar Detonation while under the effect of Giant Dominance creates a Stellar Explosion dealing unaspected damage with a potency of 310 to all nearby enemies. Also restores own HP and the HP of all nearby party members.\n\nCure Potency: 720","DescriptionJSON":null,"EffectRange":20,"ID":7439,"IconHD":"/i/003000/003143_hr1.png","Name":"Earthly Star","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 190.","DescriptionJSON":null,"EffectRange":0,"ID":7442,"IconHD":"/i/003000/003145_hr1.png","Name":"Malefic III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":315,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":13,"Description":"Draws either the Lord of Crowns or the Lady of Crowns from your divining deck.\n\nArcanum effect can be triggered using the action Crown Play.\n\nCan only be executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":7443,"IconHD":"/i/003000/003106_hr1.png","Name":"Minor Arcana","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":42,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":23,"Description":"Draws a card (arcanum) from your divining deck.\n\nYou cannot draw an arcanum if you are aligned with its Seal of Arcana. When aligned with all three seals, any arcanum may be drawn.\n\nAdditional Effect: Restores 8% of maximum MP","DescriptionJSON":null,"EffectRange":0,"ID":7448,"IconHD":"/i/003000/003107_hr1.png","Name":"Sleeve Draw","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1800,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":3,"Description":"Returns the currently drawn arcanum back to your deck.","DescriptionJSON":null,"EffectRange":0,"ID":9629,"IconHD":"/i/003000/003108_hr1.png","Name":"Undraw","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":10,"SecondaryCostType":88,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 200.\n\nCan only be executed when Ready to Rip.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16156,"IconHD":"/i/003000/003420_hr1.png","Name":"Jugular Rip","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":1842,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 240.\n\nCan only be executed when Ready to Tear.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16157,"IconHD":"/i/003000/003421_hr1.png","Name":"Abdomen Tear","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":1843,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 280.\n\nCan only be executed when Ready to Gouge.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16158,"IconHD":"/i/003000/003422_hr1.png","Name":"Eye Gouge","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":1844,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":50,"CooldownGroup":24,"Description":"Increases damage dealt by self and nearby party members by 6%.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":15,"ID":16552,"IconHD":"/i/003000/003553_hr1.png","Name":"Divination","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":60,"CooldownGroup":17,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 200\n\nAdditional Effect: Regen\n\nCure Potency: 100\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":15,"ID":16553,"IconHD":"/i/003000/003142_hr1.png","Name":"Celestial Opposition","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals unaspected damage over time.\n\nPotency: 55\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":16554,"IconHD":"/i/003000/003554_hr1.png","Name":"Combust III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":314,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 230.","DescriptionJSON":null,"EffectRange":0,"ID":16555,"IconHD":"/i/003000/003555_hr1.png","Name":"Malefic IV","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":497,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":74,"CooldownGroup":10,"Description":"Restores own or target party member's HP.\n\nCure Potency: 200\n\nAdditional Sect Effect: Erects a magicked barrier which nullifies damage equaling 200% of the amount of HP restored\n\nDuration: 30s
\nMaximum Charges: 2","DescriptionJSON":null,"EffectRange":0,"ID":16556,"IconHD":"/i/003000/003556_hr1.png","Name":"Celestial Intersection","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":76,"CooldownGroup":15,"Description":"Reads your fortune and those of nearby party members, granting them Horoscope.\n\nDuration: 10s\n\nEffect upgraded to Horoscope Helios upon receiving the effects of Helios or Aspected Helios.\n\nDuration: 30s\n\nRestores the HP of those under either effect when the cards are read a second time or the effect expires.\n\nHoroscope Cure Potency: 200\n\nHoroscope Helios Cure Potency: 400","DescriptionJSON":null,"EffectRange":20,"ID":16557,"IconHD":"/i/003000/003550_hr1.png","Name":"Horoscope","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":22,"Description":"Increases healing magic potency by 20%.\n\nDuration: 20s\n\nAdditional Effect: When casting Aspected Benefic or Aspected Helios, erects a magicked barrier which nullifies damage\n\nAspected Benefic Effect: Nullifies damage equaling 250% of the amount of HP restored\n\nAspected Helios Effect: Nullifies damage equaling 125% of the amount of HP restored\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":16559,"IconHD":"/i/003000/003552_hr1.png","Name":"Neutral Sect","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":2,"Description":"Triggers the effect of your drawn arcanum.","DescriptionJSON":null,"EffectRange":0,"ID":17055,"IconHD":"/i/003000/003102_hr1.png","Name":"Play","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":10,"SecondaryCostType":73,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":86,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 180.\n\nCan only be executed when Ready to Blast.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25759,"IconHD":"/i/003000/003431_hr1.png","Name":"Hypervelocity","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2686,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 180.\n\nCan only be executed while in combat and under the effect of the Fifth Chakra. The five chakra close upon execution.\n\nShares a recast timer with Howling Fist.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25761,"IconHD":"/i/002000/002530_hr1.png","Name":"Steel Peak","PreservesCombo":1,"PrimaryCostType":28,"PrimaryCostValue":5,"Range":"-1","Recast100ms":10,"SecondaryCostType":122,"SecondaryCostValue":428,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":5,"Description":"Triggers the effect of your drawn arcanum.","DescriptionJSON":null,"EffectRange":0,"ID":25869,"IconHD":"/i/003000/003557_hr1.png","Name":"Crown Play","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":10,"SecondaryCostType":73,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":8,"Description":"Grants an effect using the astrosigns read from your divining deck.\n\nCan only be executed after reading three astrosigns.\n\nEffects granted are determined by the number of different types of astrosigns read.\n\n1 Sign Type: Grants Harmony of Spirit\n\n2 Sign Types: Grants Harmony of Spirit and Harmony of Body\n\n3 Sign Types: Grants Harmony of Spirit, Harmony of Body, and Harmony of Mind\n\nDuration: 15s\n\nHarmony of Spirit Effect: Gradually restores own MP\n\nPotency: 50\n\nHarmony of Body Effect: Reduces spell cast time and recast time, and auto-attack delay by 10%\n\nHarmony of Mind Effect: Increases damage dealt and healing potency by 5%","DescriptionJSON":null,"EffectRange":0,"ID":25870,"IconHD":"/i/003000/003558_hr1.png","Name":"Astrodyne","PreservesCombo":1,"PrimaryCostType":58,"PrimaryCostValue":0,"Range":0,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 250.","DescriptionJSON":null,"EffectRange":0,"ID":25871,"IconHD":"/i/003000/003559_hr1.png","Name":"Fall Malefic","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":497,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":2,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 130 to target and all enemies nearby it.","DescriptionJSON":null,"EffectRange":5,"ID":25872,"IconHD":"/i/003000/003560_hr1.png","Name":"Gravity II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":498,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":86,"CooldownGroup":16,"Description":"Reduces damage taken by self or target party member by 10%.\n\nDuration: 8s\n\nAdditional Effect: Restores HP at the end of the effect's duration\n\nCure Potency: 500","DescriptionJSON":null,"EffectRange":0,"ID":25873,"IconHD":"/i/003000/003561_hr1.png","Name":"Exaltation","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":90,"CooldownGroup":21,"Description":"Deals unaspected damage to all nearby enemies with a potency of 250 for the first enemy, and 40% less for all remaining enemies.\n\nAdditional Effect: Grants Macrocosmos to self and all nearby party members\n\nDuration: 15s\n\nAction changes to Microcosmos upon execution.\n\nFor the effect's duration, 50% of damage taken is compiled.\n\nRestores HP equal to a cure of 200 potency plus compiled damage when the effect expires or upon execution of Microcosmos.\n\nAmount restored cannot exceed the target's maximum HP.\n\nThis action does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":20,"ID":25874,"IconHD":"/i/003000/003562_hr1.png","Name":"Macrocosmos","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":6,"Range":0,"Recast100ms":1800,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies with a potency of 600 for the first enemy, and 70% less for all remaining enemies.\n\nAdditional Effect: Opens the Solar Nadi\n\nAdditional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form\n\nDuration: 30s\n\nAny additional effects associated with the executed action will also be applied.\n\nCan only be executed while under the effect of three distinct Beast Chakra.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25882,"IconHD":"/i/002000/002548_hr1.png","Name":"Flint Strike","PreservesCombo":0,"PrimaryCostType":79,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":512,"TargetArea":0}],"34":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 200. Additional Effect: Strengthens the gaze of your Dragon Gauge by 1
\n
\n Can only be executed when Dive Ready.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7399,"IconHD":"/i/002000/002588_hr1.png","Name":"Mirage Dive","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":10,"SecondaryCostType":32,"SecondaryCostValue":1243,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":70,"CooldownGroup":3,"Description":"Delivers an attack to all enemies in a straight line before you with a potency of 360 for the first enemy, and 30% less for all remaining enemies.\n\nCan only be executed while under the effect of Life of the Dragon.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":7400,"IconHD":"/i/002000/002589_hr1.png","Name":"Nastrond","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":100,"SecondaryCostType":76,"SecondaryCostValue":2,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 200 .
\nAdditional Effect: Increases Kenki Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":7477,"IconHD":"/i/003000/003151_hr1.png","Name":"Hakaze","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7477,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 120 .\n\nCombo Action: Hakaze\n\nCombo Potency: 280 Combo Bonus: Grants Fugetsu\n\nFugetsu Effect: Increases damage dealt by 13 %\n\nDuration: 40s
\nCombo Bonus: Increases Kenki Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":7478,"IconHD":"/i/003000/003152_hr1.png","Name":"Jinpu","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7477,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":18,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 120 .\n\nCombo Action: Hakaze\n\nCombo Potency: 280 Combo Bonus: Grants Fuka\n\nFuka Effect: Reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 13 %\n\nDuration: 40s
\nCombo Bonus: Increases Kenki Gauge by 5","DescriptionJSON":null,"EffectRange":0,"ID":7479,"IconHD":"/i/003000/003156_hr1.png","Name":"Shifu","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7477,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 120 .\n\nCombo Action: Hakaze\n\nCombo Potency: 300
\nCombo Bonus: Increases Kenki Gauge by","DescriptionJSON":null,"EffectRange":0,"ID":7480,"IconHD":"/i/003000/003166_hr1.png","Name":"Yukikaze","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7478,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 120 . 170 when executed from a target's rear.\n\nCombo Action: Jinpu\n\nCombo Potency: 330 Rear Combo Potency: 380
\nCombo Bonus: Increases Kenki Gauge by Combo Bonus: Grants Getsu","DescriptionJSON":null,"EffectRange":0,"ID":7481,"IconHD":"/i/003000/003158_hr1.png","Name":"Gekko","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7479,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 120 . 170 when executed from a target's flank.\n\nCombo Action: Shifu\n\nCombo Potency: 330 Flank Combo Potency: 380
\nCombo Bonus: Increases Kenki Gauge by Combo Bonus: Grants Ka","DescriptionJSON":null,"EffectRange":0,"ID":7482,"IconHD":"/i/003000/003164_hr1.png","Name":"Kasha","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 90 to all enemies in a cone before you.
\nAdditional Effect: Increases Kenki Gauge by 5","DescriptionJSON":null,"EffectRange":8,"ID":7483,"IconHD":"/i/003000/003157_hr1.png","Name":"Fuga","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":8,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":519,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7483,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby enemies.\n\nCombo Action: Fuko \n\nCombo Potency: 120\n\nCombo Bonus: Grants Fugetsu\n\nFugetsu Effect: Increases damage dealt by 13 %\n\nDuration: 40s
\nCombo Bonus: Increases Kenki Gauge by","DescriptionJSON":null,"EffectRange":5,"ID":7484,"IconHD":"/i/003000/003163_hr1.png","Name":"Mangetsu","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7483,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby enemies.\n\nCombo Action: Fuko \n\nCombo Potency: 120\n\nCombo Bonus: Grants Fuka\n\nFuka Effect: Reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 13 %\n\nDuration: 40s
\nCombo Bonus: Increases Kenki Gauge by","DescriptionJSON":null,"EffectRange":5,"ID":7485,"IconHD":"/i/003000/003165_hr1.png","Name":"Oka","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Delivers a ranged attack with a potency of 100.
\nEnhanced Enpi Bonus Potency: 260
\nAdditional Effect: Increases Kenki Gauge by","DescriptionJSON":null,"EffectRange":0,"ID":7486,"IconHD":"/i/003000/003155_hr1.png","Name":"Enpi","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":18,"CastType":1,"ClassJobLevel":50,"CooldownGroup":58,"Description":"Delivers a critical hit with a potency of 640. Additional Effect: Grants a stack of Meditation, up to a maximum of 3
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7487,"IconHD":"/i/003000/003162_hr1.png","Name":"Midare Setsugekka","PreservesCombo":1,"PrimaryCostType":40,"PrimaryCostValue":0,"Range":6,"Recast100ms":25,"SecondaryCostType":72,"SecondaryCostValue":3,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":18,"CastType":2,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 280 to all nearby enemies. Additional Effect: Grants a stack of Meditation, up to a maximum of 3
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":7488,"IconHD":"/i/003000/003161_hr1.png","Name":"Tenka Goken","PreservesCombo":1,"PrimaryCostType":40,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":72,"SecondaryCostValue":2,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":18,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 200.\n\nAdditional Effect: Damage over time\n\nPotency: 45\n\nDuration: 60s Additional Effect: Grants a stack of Meditation, up to a maximum of 3
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7489,"IconHD":"/i/003000/003160_hr1.png","Name":"Higanbana","PreservesCombo":1,"PrimaryCostType":40,"PrimaryCostValue":0,"Range":6,"Recast100ms":25,"SecondaryCostType":72,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":52,"CooldownGroup":2,"Description":"Delivers an attack with a potency of 250.\n\nKenki Gauge Cost: 25","DescriptionJSON":null,"EffectRange":0,"ID":7490,"IconHD":"/i/003000/003173_hr1.png","Name":"Hissatsu: Shinten","PreservesCombo":1,"PrimaryCostType":39,"PrimaryCostValue":25,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":62,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 110 to all nearby enemies.\n\nKenki Gauge Cost: 25","DescriptionJSON":null,"EffectRange":5,"ID":7491,"IconHD":"/i/003000/003174_hr1.png","Name":"Hissatsu: Kyuten","PreservesCombo":1,"PrimaryCostType":39,"PrimaryCostValue":25,"Range":0,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":6,"Description":"Rushes target and delivers an attack with a potency of 100.\n\nKenki Gauge Cost: 10\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":7492,"IconHD":"/i/003000/003169_hr1.png","Name":"Hissatsu: Gyoten","PreservesCombo":1,"PrimaryCostType":39,"PrimaryCostValue":10,"Range":20,"Recast100ms":100,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":3,"Cast100ms":0,"CastType":1,"ClassJobLevel":56,"CooldownGroup":7,"Description":"Delivers an attack with a potency of 100.\n\nAdditional Effect: 10-yalm backstep\n\nAdditional Effect: Grants Enhanced Enpi\n\nDuration: 15s\n\nKenki Gauge Cost: 10\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":7493,"IconHD":"/i/003000/003170_hr1.png","Name":"Hissatsu: Yaten","PreservesCombo":1,"PrimaryCostType":39,"PrimaryCostValue":10,"Range":5,"Recast100ms":100,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":52,"CooldownGroup":4,"Description":"Increases potency of next weaponskill by 50%.\n\nDuration: 10s\n\nKenki Gauge Cost: 20","DescriptionJSON":null,"EffectRange":0,"ID":7494,"IconHD":"/i/000000/000786_hr1.png","Name":"Hissatsu: Kaiten","PreservesCombo":1,"PrimaryCostType":39,"PrimaryCostValue":20,"Range":0,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":5,"Description":"Converts Setsu, Getsu, and Ka into Kenki. Each Sen converted increases your Kenki Gauge by 10. Can only be executed if under the effect of at least one of the three statuses.","DescriptionJSON":null,"EffectRange":0,"ID":7495,"IconHD":"/i/003000/003176_hr1.png","Name":"Hagakure","PreservesCombo":1,"PrimaryCostType":40,"PrimaryCostValue":0,"Range":0,"Recast100ms":50,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":70,"CooldownGroup":22,"Description":"Delivers an attack to all enemies in a straight line before you with a potency of 500 for the first enemy, and 50% less for all remaining enemies.\n\nKenki Gauge Cost: 25
\nShares a recast timer with Hissatsu: Senei.","DescriptionJSON":null,"EffectRange":10,"ID":7496,"IconHD":"/i/003000/003177_hr1.png","Name":"Hissatsu: Guren","PreservesCombo":1,"PrimaryCostType":39,"PrimaryCostValue":25,"Range":10,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":12,"Description":"Gradually increases your Kenki Gauge.\n\nDuration: 15s Additional Effect: Grants stacks of Meditation when used in combat, up to a maximum of 3
\n
\n Kenki Gauge not affected when used outside battle.\n\nEffect ends upon using another action or moving (including facing a different direction).\n\nCancels auto-attack upon execution.\n\nTriggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.","DescriptionJSON":null,"EffectRange":0,"ID":7497,"IconHD":"/i/003000/003172_hr1.png","Name":"Meditate","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":6,"CooldownGroup":8,"Description":"Reduces the amount of damage taken by the next attack by 10%.\n\nDuration: 4s
\nAdditional Effect: Increases Kenki Gauge by 10 when hit","DescriptionJSON":null,"EffectRange":0,"ID":7498,"IconHD":"/i/003000/003153_hr1.png","Name":"Third Eye","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":150,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":21,"Description":"Execute up to 3 weaponskill combos without meeting combo prerequisites. Does not affect Iaijutsu or Ogi Namikiri .\n\nDuration: 15s\n\nAdditional Effect: Successfully landing Gekko grants Fugetsu, and successfully landing Kasha grants Fuka
\nMaximum Charges: 2","DescriptionJSON":null,"EffectRange":0,"ID":7499,"IconHD":"/i/003000/003167_hr1.png","Name":"Meikyo Shisui","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":550,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":18,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Executes a weaponskill depending on current number of Sen stored in Sen Gauge.\n\n1 Sen: Higanbana\n\n2 Sen: Tenka Goken\n\n3 Sen: Midare Setsugekka","DescriptionJSON":null,"EffectRange":0,"ID":7867,"IconHD":"/i/003000/003159_hr1.png","Name":"Iaijutsu","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":73,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":70,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.\n\n0 Steps: 350\n\n1 Step: 540\n\n2 Steps: 720\n\n3 Steps: 900\n\n4 Steps: 1,200 Step Bonus: Grants Technical Finish and Esprit to self and party members Damage bonus of Technical Finish varies with number of successful steps.\n\n1 Step: 1%\n\n2 Steps: 2%\n\n3 Steps: 3%\n\n4 Steps: 5%\n\nDuration: 20s Additional Effect: Grants Flourishing Finish
\n
\nDuration: 30s
\n
\n Recast timer cannot be affected by status effects or gear attributes. ※Action changes to Tillana upon execution.
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":16194,"IconHD":"/i/003000/003474_hr1.png","Name":"Double Technical Finish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":6,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":70,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.\n\n0 Steps: 350\n\n1 Step: 540\n\n2 Steps: 720\n\n3 Steps: 900\n\n4 Steps: 1,200 Step Bonus: Grants Technical Finish and Esprit to self and party members Damage bonus of Technical Finish varies with number of successful steps.\n\n1 Step: 1%\n\n2 Steps: 2%\n\n3 Steps: 3%\n\n4 Steps: 5%\n\nDuration: 20s Additional Effect: Grants Flourishing Finish
\n
\nDuration: 30s
\n
\n Recast timer cannot be affected by status effects or gear attributes. ※Action changes to Tillana upon execution.
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":16195,"IconHD":"/i/003000/003474_hr1.png","Name":"Triple Technical Finish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":7,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":70,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.\n\n0 Steps: 350\n\n1 Step: 540\n\n2 Steps: 720\n\n3 Steps: 900\n\n4 Steps: 1,200 Step Bonus: Grants Technical Finish and Esprit to self and party members Damage bonus of Technical Finish varies with number of successful steps.\n\n1 Step: 1%\n\n2 Steps: 2%\n\n3 Steps: 3%\n\n4 Steps: 5%\n\nDuration: 20s Additional Effect: Grants Flourishing Finish
\n
\nDuration: 30s
\n
\n Recast timer cannot be affected by status effects or gear attributes. ※Action changes to Tillana upon execution.
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":16196,"IconHD":"/i/003000/003474_hr1.png","Name":"Quadruple Technical Finish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":8,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 280. Additional Effect: Sharpens the Firstminds' Focus by 1
\n
\n Can only be executed while under the effect of Draconian Fire.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16479,"IconHD":"/i/002000/002592_hr1.png","Name":"Raiden Thrust","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1863,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":72,"CooldownGroup":22,"Description":"Delivers an attack with a potency of 800.\n\nKenki Gauge Cost: 25\n\nShares a recast timer with Hissatsu: Guren.","DescriptionJSON":null,"EffectRange":0,"ID":16481,"IconHD":"/i/003000/003178_hr1.png","Name":"Hissatsu: Senei","PreservesCombo":1,"PrimaryCostType":39,"PrimaryCostValue":25,"Range":"-1","Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":20,"Description":"Increases Kenki Gauge by 50. Additional Effect: Grants Ogi Namikiri Ready
\n
\nDuration: 30s
\n
\n Can only be executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":16482,"IconHD":"/i/003000/003179_hr1.png","Name":"Ikishoten","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":42,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":11,"Description":"Repeats the previously executed iaijutsu with increased potency. Maximum Charges: 2
\n
\n Can only be executed immediately following Iaijutsu.\n\nTriggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.","DescriptionJSON":null,"EffectRange":0,"ID":16483,"IconHD":"/i/003000/003180_hr1.png","Name":"Tsubame-gaeshi","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":73,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":11,"Description":"Delivers an attack with a potency of 200.\n\nAdditional Effect: Damage over time\n\nPotency: 45\n\nDuration: 60s\n\nEffect cannot be stacked with Higanbana.\n\nTriggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16484,"IconHD":"/i/003000/003181_hr1.png","Name":"Kaeshi: Higanbana","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":6,"Recast100ms":600,"SecondaryCostType":14,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":76,"CooldownGroup":11,"Description":"Delivers an attack with a potency of 280 to all nearby enemies.\n\nTriggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":16485,"IconHD":"/i/003000/003182_hr1.png","Name":"Kaeshi: Goken","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":14,"SecondaryCostValue":2,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":11,"Description":"Delivers a critical hit with a potency of 640.\n\nTriggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16486,"IconHD":"/i/003000/003183_hr1.png","Name":"Kaeshi: Setsugekka","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":6,"Recast100ms":600,"SecondaryCostType":14,"SecondaryCostValue":3,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":9,"Description":"Delivers an attack with a potency of 520.\n\nCan only be executed after accumulating three stacks of Meditation by executing Iaijutsu, Meditate, or Ogi Namikiri while in combat.\n\nMeditation effect fades upon execution.
\nShares a recast timer with Shoha II.","DescriptionJSON":null,"EffectRange":0,"ID":16487,"IconHD":"/i/003000/003184_hr1.png","Name":"Shoha","PreservesCombo":1,"PrimaryCostType":63,"PrimaryCostValue":3,"Range":"-1","Recast100ms":150,"SecondaryCostType":109,"SecondaryCostValue":3,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":86,"CooldownGroup":0,"Description":"All enemies standing in the corrupted earth of Doton take additional earth damage with a potency of 50.\n\nRequires Hakke Mujinsatsu to be executed as a combo action or upon executing Katon, Goka Mekkyaku, or Phantom Kamaitachi.\n\nEffect can only be triggered while Doton is active.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25776,"IconHD":"/i/002000/002930_hr1.png","Name":"Hollow Nozuchi","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":100,"Recast100ms":0,"SecondaryCostType":32,"SecondaryCostValue":501,"TargetArea":1},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":82,"CooldownGroup":9,"Description":"Delivers an attack with a potency of 200 to all nearby enemies.\n\nCan only be executed after accumulating three stacks of Meditation by executing Iaijutsu, Meditate, or Ogi Namikiri while in combat.\n\nMeditation effect fades upon execution.\n\nShares a recast timer with Shoha.","DescriptionJSON":null,"EffectRange":5,"ID":25779,"IconHD":"/i/003000/003185_hr1.png","Name":"Shoha II","PreservesCombo":1,"PrimaryCostType":63,"PrimaryCostValue":3,"Range":0,"Recast100ms":150,"SecondaryCostType":109,"SecondaryCostValue":3,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":86,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby enemies.\n\nAdditional Effect: Increases Kenki Gauge by 10","DescriptionJSON":null,"EffectRange":5,"ID":25780,"IconHD":"/i/003000/003189_hr1.png","Name":"Fuko","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":519,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":18,"CastType":3,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Delivers a critical hit to all enemies in a cone before you with a potency of 800 for the first enemy, and 75% less for all remaining enemies.\n\nGrants a stack of Meditation, up to a maximum of 3.\n\nCan only be executed while under the effect of Ogi Namikiri Ready.\n\n\n\n※Action changes to Kaeshi: Namikiri upon execution.","DescriptionJSON":null,"EffectRange":8,"ID":25781,"IconHD":"/i/003000/003187_hr1.png","Name":"Ogi Namikiri","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":8,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":2959,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":90,"CooldownGroup":3,"Description":"Delivers a critical hit to all enemies in a cone before you with a potency of 800 for the first enemy, and 75% less for all remaining enemies.\n\nTriggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":8,"ID":25782,"IconHD":"/i/003000/003188_hr1.png","Name":"Kaeshi: Namikiri","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":8,"Recast100ms":10,"SecondaryCostType":14,"SecondaryCostValue":4,"TargetArea":0}],"35":[{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 350 to target and all enemies nearby it.\n\nMudra Combination: ChiTen or JinTen\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":2266,"IconHD":"/i/002000/002908_hr1.png","Name":"Katon","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":20,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Deals lightning damage with a potency of 650. Additional Effect: Grants a stack of Raiju Ready
\n
\nDuration: 30s
\n
\nMaximum Stacks: 3
\n
\nEffect of Raiju Ready ends upon execution of any melee weaponskill.
\n
\n Mudra Combination: TenChi or JinChi\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":2267,"IconHD":"/i/002000/002912_hr1.png","Name":"Raiton","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":20,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Deals ice damage with a potency of 350.\n\nAdditional Effect: Bind\n\nDuration: 15s\n\nMudra Combination: TenJin or ChiJin\n\nCancels auto-attack upon execution.\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":2268,"IconHD":"/i/002000/002909_hr1.png","Name":"Hyoton","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":25,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Reduces weaponskill recast time and auto-attack delay by 15%.\n\nDuration: 60s\n\nMudra Combination: JinChiTen or ChiJinTen\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":2269,"IconHD":"/i/002000/002910_hr1.png","Name":"Huton","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":0,"Recast100ms":15,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 170.\n\nAdditional Effect: Increases both Black Mana and White Mana by 2","DescriptionJSON":null,"EffectRange":0,"ID":7503,"IconHD":"/i/003000/003202_hr1.png","Name":"Jolt","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":195,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 130.
\nAction upgraded to Enchanted Riposte if both Black Mana and White Mana are at 20 or more.","DescriptionJSON":null,"EffectRange":0,"ID":7504,"IconHD":"/i/003000/003201_hr1.png","Name":"Riposte","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":75,"SecondaryCostValue":20,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":50,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Deals lightning damage with a potency of 360 .\n\nAdditional Effect: Increases Black Mana by 6
\nAdditional Effect: 50% chance of becoming Verfire Ready
\n
\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":7505,"IconHD":"/i/003000/003203_hr1.png","Name":"Verthunder","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":483,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":6,"CooldownGroup":11,"Description":"Rushes target and delivers an attack with a potency of 130.\n\nMaximum Charges: 2\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":7506,"IconHD":"/i/003000/003204_hr1.png","Name":"Corps-a-corps","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":350,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":50,"CastType":1,"ClassJobLevel":10,"CooldownGroup":58,"Description":"Deals wind damage with a potency of 360 .\n\nAdditional Effect: Increases White Mana by 6
\nAdditional Effect: 50% chance of becoming Verstone Ready
\n
\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":7507,"IconHD":"/i/003000/003205_hr1.png","Name":"Veraero","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":483,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":50,"CastType":2,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 120 to target and all enemies nearby it. Acceleration Potency: 170 Additional Effect: Increases both Black Mana and White Mana by 3","DescriptionJSON":null,"EffectRange":5,"ID":7509,"IconHD":"/i/003000/003207_hr1.png","Name":"Scatter","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":303,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 330 .\n\nAdditional Effect: Increases Black Mana by 5\n\nCan only be executed while Verfire Ready is active.","DescriptionJSON":null,"EffectRange":0,"ID":7510,"IconHD":"/i/003000/003208_hr1.png","Name":"Verfire","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1234,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Deals earth damage with a potency of 330 .\n\nAdditional Effect: Increases White Mana by 5\n\nCan only be executed while Verstone Ready is active.","DescriptionJSON":null,"EffectRange":0,"ID":7511,"IconHD":"/i/003000/003209_hr1.png","Name":"Verstone","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":1235,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7504,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Riposte or Enchanted Riposte\n\nCombo Potency: 150\n\nAction upgraded to Enchanted Zwerchhau if both Black Mana and White Mana are at 15 or more.","DescriptionJSON":null,"EffectRange":0,"ID":7512,"IconHD":"/i/003000/003210_hr1.png","Name":"Zwerchhau","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":75,"SecondaryCostValue":15,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":52,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 60 to all enemies in a cone before you.\n\nAction upgraded to Enchanted Moulinet if both Black Mana and White Mana are at 20 or more.","DescriptionJSON":null,"EffectRange":8,"ID":7513,"IconHD":"/i/003000/003215_hr1.png","Name":"Moulinet","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":8,"Recast100ms":25,"SecondaryCostType":75,"SecondaryCostValue":20,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":54,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 350","DescriptionJSON":null,"EffectRange":0,"ID":7514,"IconHD":"/i/003000/003216_hr1.png","Name":"Vercure","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":4,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":13,"Description":"Delivers an attack with a potency of 180 .\n\nAdditional Effect: 15-yalm backstep\n\nMaximum Charges: 2\n\nCannot be executed while bound.\n\nShares a recast timer with Engagement.","DescriptionJSON":null,"EffectRange":0,"ID":7515,"IconHD":"/i/003000/003211_hr1.png","Name":"Displacement","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":5,"Recast100ms":350,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":7512,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Zwerchhau or Enchanted Zwerchhau\n\nCombo Potency: 230\n\nAction upgraded to Enchanted Redoublement if both Black Mana and White Mana are at 15 or more.","DescriptionJSON":null,"EffectRange":0,"ID":7516,"IconHD":"/i/003000/003213_hr1.png","Name":"Redoublement","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":75,"SecondaryCostValue":15,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":5,"Description":"Delivers an attack with a potency of 460.","DescriptionJSON":null,"EffectRange":0,"ID":7517,"IconHD":"/i/003000/003212_hr1.png","Name":"Fleche","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":250,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":20,"Description":"Ensures the next Verthunder III, Veraero III , or Impact can be cast immediately.\n\nDuration: 20s\n\nAdditional Effect: Increases the potency of Impact by 50\n\nAdditional Effect: Ensures Verthunder III and Veraero III trigger Verfire Ready or Verstone Ready respectively
\nMaximum Charges: 2","DescriptionJSON":null,"EffectRange":0,"ID":7518,"IconHD":"/i/003000/003214_hr1.png","Name":"Acceleration","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":550,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":56,"CooldownGroup":8,"Description":"Delivers an attack with a potency of 360 to target and all enemies nearby it.","DescriptionJSON":null,"EffectRange":6,"ID":7519,"IconHD":"/i/003000/003217_hr1.png","Name":"Contre Sixte","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":450,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":58,"CooldownGroup":21,"Description":"Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":15,"ID":7520,"IconHD":"/i/003000/003218_hr1.png","Name":"Embolden","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":22,"Description":"Increases both Black Mana and White Mana by 50. Additional Effect: Grants All combos are canceled upon execution of Manafication.\n\nCan only be executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":7521,"IconHD":"/i/003000/003219_hr1.png","Name":"Manafication","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":42,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":100,"CastType":1,"ClassJobLevel":64,"CooldownGroup":58,"Description":"Resurrects target to a weakened state.","DescriptionJSON":null,"EffectRange":0,"ID":7523,"IconHD":"/i/003000/003221_hr1.png","Name":"Verraise","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":24,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":62,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 310 .\n\nAdditional Effect: Increases both Black Mana and White Mana by 2","DescriptionJSON":null,"EffectRange":0,"ID":7524,"IconHD":"/i/003000/003220_hr1.png","Name":"Jolt II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":195,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":18,"CooldownGroup":58,"Description":"Deals lightning damage with a potency of 140 to target and all enemies nearby it.\n\nAdditional Effect: Increases Black Mana by 7","DescriptionJSON":null,"EffectRange":5,"ID":16524,"IconHD":"/i/003000/003229_hr1.png","Name":"Verthunder II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":22,"CooldownGroup":58,"Description":"Deals wind damage with a potency of 140 to target and all enemies nearby it.\n\nAdditional Effect: Increases White Mana by 7","DescriptionJSON":null,"EffectRange":5,"ID":16525,"IconHD":"/i/003000/003230_hr1.png","Name":"Veraero II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":50,"CastType":2,"ClassJobLevel":66,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 210 to target and all enemies nearby it.\n\nAcceleration Potency: 260 Additional Effect: Increases both Black Mana and White Mana by 3","DescriptionJSON":null,"EffectRange":5,"ID":16526,"IconHD":"/i/003000/003222_hr1.png","Name":"Impact","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":13,"Description":"Delivers an attack with a potency of 180 .\n\nMaximum Charges: 2\n\nShares a recast timer with Displacement.","DescriptionJSON":null,"EffectRange":0,"ID":16527,"IconHD":"/i/003000/003231_hr1.png","Name":"Engagement","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":350,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nAction upgraded to Enchanted Reprise if both Black Mana and White Mana are at 5 or more.","DescriptionJSON":null,"EffectRange":0,"ID":16529,"IconHD":"/i/003000/003233_hr1.png","Name":"Reprise","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":75,"SecondaryCostValue":5,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":80,"CooldownGroup":6,"Description":"Creates a barrier around self and all nearby party members. Damage absorbed increases with stacks of Rising Rhythm.\n\n0 Stacks: 5% of maximum HP\n\n1 Stack: 6% of maximum HP\n\n2 Stacks: 7% of maximum HP\n\n3 Stacks: 8% of maximum HP\n\n4 Stacks: 10% of maximum HP\n\nDuration: 30s\n\nCan only be executed while Improvisation is active.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":8,"ID":25789,"IconHD":"/i/003000/003479_hr1.png","Name":"Improvised Finish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":91,"SecondaryCostValue":1827,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies with a potency of 360 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Grants Standard Finish and Esprit to self and party member designated as your Dance Partner\n\nStandard Finish Effect: Increases damage dealt by 5%\n\nDuration: 60s\n\nCan only be executed while under the effect of Flourishing Finish.\n\nRecast timer cannot be affected by status effects or gear attributes.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":25790,"IconHD":"/i/003000/003480_hr1.png","Name":"Tillana","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2698,"Range":0,"Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":2698,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":25,"CastType":1,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 500.\n\nAstral Fire Bonus: Refreshes the duration of Astral Fire and 40% chance to grant Firestarter\n\nDuration: 15s\n\nFirestarter Effect: Next Fire III will require no time to cast and cost no MP\n\nDuration: 30s\n\nUmbral Ice Bonus: Spell is cast immediately, requires no MP to cast, and refreshes the duration of Umbral Ice\n\nDuration: 15s\n\nCan only be executed while under the effect of Paradox.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25797,"IconHD":"/i/002000/002672_hr1.png","Name":"Paradox","PreservesCombo":0,"PrimaryCostType":76,"PrimaryCostValue":16,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":86,"CooldownGroup":3,"Description":"Deals earth damage to target and all enemies nearby it with a potency of 150 for the first enemy, and 70% less for all remaining enemies.\n\nCan only be executed while under the effect of Titan's Favor.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25836,"IconHD":"/i/002000/002770_hr1.png","Name":"Mountain Buster","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2853,"Range":25,"Recast100ms":10,"SecondaryCostType":32,"SecondaryCostValue":2853,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":30,"CastType":2,"ClassJobLevel":86,"CooldownGroup":58,"Description":"Deals wind damage to target and all enemies nearby it with a potency of 430 for the first enemy, and 65% less for all remaining enemies.\n\nAdditional Effect: Creates a windstorm centered around the target, dealing damage to any enemies who enter\n\nPotency: 30\n\nDuration: 15s\n\nCan only be executed while under the effect of Garuda's Favor.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25837,"IconHD":"/i/002000/002771_hr1.png","Name":"Slipstream","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":35,"SecondaryCostType":32,"SecondaryCostValue":2725,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":50,"CastType":1,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Deals lightning damage with a potency of 380.\n\nAdditional Effect: Increases Black Mana by 6\n\nAdditional Effect: 50% chance of becoming Verfire Ready\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":25855,"IconHD":"/i/003000/003235_hr1.png","Name":"Verthunder III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":50,"CastType":1,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Deals wind damage with a potency of 380.\n\nAdditional Effect: Increases White Mana by 6\n\nAdditional Effect: 50% chance of becoming Verstone Ready\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":25856,"IconHD":"/i/003000/003236_hr1.png","Name":"Veraero III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":86,"CooldownGroup":24,"Description":"Reduces magic damage taken by self and nearby party members by 10%, while increasing HP recovered by healing actions by 5%.\n\nDuration: 10s","DescriptionJSON":null,"EffectRange":15,"ID":25857,"IconHD":"/i/003000/003237_hr1.png","Name":"Magick Barrier","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"36":[{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals a 20-yalm knockback to all enemies in a cone before you.","DescriptionJSON":null,"EffectRange":6,"ID":11383,"IconHD":"/i/003000/003251_hr1.png","Name":"Snort","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Drops a 4-tonze weight dealing physical damage at a designated location with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Heavy +40%\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":4,"ID":11384,"IconHD":"/i/003000/003252_hr1.png","Name":"4-tonze Weight","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals water damage with a potency of 200.","DescriptionJSON":null,"EffectRange":0,"ID":11385,"IconHD":"/i/003000/003253_hr1.png","Name":"Water Cannon","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":1,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 50.\n\nAdditional Effect: Unaspected damage over time\n\nPotency: 50\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":11386,"IconHD":"/i/003000/003254_hr1.png","Name":"Song of Torment","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals lightning damage to all nearby enemies with a potency of 180 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Paralysis\n\nDuration: 15s\n\nAdditional Effect: Potency increased to 220 when target is afflicted with Dropsy\n\nAdditional Effect: Duration of Paralysis is increased to 30 seconds when target is afflicted with Dropsy","DescriptionJSON":null,"EffectRange":12,"ID":11387,"IconHD":"/i/003000/003255_hr1.png","Name":"High Voltage","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Blow noxious breath on all enemies in a cone before you, inflicting Slow +20%, Heavy +40%, Blind, and Paralysis.\n\nAdditional Effect: Poison\n\nPotency: 20\n\nAdditional Effect: Damage dealt reduced 10%\n\nDuration: 15s\n\nAdditional Effect: Interrupts target","DescriptionJSON":null,"EffectRange":8,"ID":11388,"IconHD":"/i/003000/003256_hr1.png","Name":"Bad Breath","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":10,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers a jumping physical attack to target and all enemies nearby it with a potency of 150 for the first enemy, and 50% less for all remaining enemies.\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":6,"ID":11389,"IconHD":"/i/003000/003257_hr1.png","Name":"Flying Frenzy","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals water damage to all enemies in a cone before you with a potency of 140 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Inflicts Dropsy, dealing water damage over time\n\nPotency: 20\n\nDuration: 12s","DescriptionJSON":null,"EffectRange":8,"ID":11390,"IconHD":"/i/003000/003258_hr1.png","Name":"Aqua Breath","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals earth damage to all nearby enemies with a potency of 220 for the first enemy, and 50% less for all remaining enemies.","DescriptionJSON":null,"EffectRange":6,"ID":11391,"IconHD":"/i/003000/003259_hr1.png","Name":"Plaincracker","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Puts target and all enemies nearby it to sleep.\n\nDuration: 30s\n\nCancels auto-attack upon execution.","DescriptionJSON":null,"EffectRange":6,"ID":11392,"IconHD":"/i/003000/003260_hr1.png","Name":"Acorn Bomb","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Increases the potency of the next spell cast by 50%.\n\nDuration: 30s\n\nEffect cannot be stacked with Harmonized.","DescriptionJSON":null,"EffectRange":0,"ID":11393,"IconHD":"/i/003000/003261_hr1.png","Name":"Bristle","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage to all nearby enemies with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Paralysis\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":6,"ID":11394,"IconHD":"/i/003000/003262_hr1.png","Name":"Mind Blast","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 50.\n\nAdditional Effect: Restores MP","DescriptionJSON":null,"EffectRange":0,"ID":11395,"IconHD":"/i/003000/003263_hr1.png","Name":"Blood Drain","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":1,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals fire damage at a designated location with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Stun\n\nDuration: 3s","DescriptionJSON":null,"EffectRange":6,"ID":11396,"IconHD":"/i/003000/003264_hr1.png","Name":"Bomb Toss","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":60,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals a fixed 1,000 points of physical damage which is shared by all enemies around you.","DescriptionJSON":null,"EffectRange":4,"ID":11397,"IconHD":"/i/003000/003265_hr1.png","Name":"1000 Needles","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":4,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals physical damage to all enemies in a straight line before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Potency is increased to 600 when target is afflicted with Petrification. The Petrification effect is also removed.","DescriptionJSON":null,"EffectRange":20,"ID":11398,"IconHD":"/i/003000/003266_hr1.png","Name":"Drill Cannons","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Increased enmity","DescriptionJSON":null,"EffectRange":6,"ID":11399,"IconHD":"/i/003000/003267_hr1.png","Name":"the Look","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals physical damage with a potency of 220.\n\nAdditional Effect: Potency is increased to 450 when target is stunned","DescriptionJSON":null,"EffectRange":0,"ID":11400,"IconHD":"/i/003000/003268_hr1.png","Name":"Sharpened Knife","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":3,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":10,"CastType":7,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Move quickly to the specified location.\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":1,"ID":11401,"IconHD":"/i/003000/003269_hr1.png","Name":"Loom","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":15,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals fire damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.","DescriptionJSON":null,"EffectRange":8,"ID":11402,"IconHD":"/i/003000/003270_hr1.png","Name":"Flame Thrower","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Stuns all enemies in a cone before you.\n\nDuration: 6s","DescriptionJSON":null,"EffectRange":4,"ID":11403,"IconHD":"/i/003000/003271_hr1.png","Name":"Faze","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":4,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals lightning damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Paralysis\n\nDuration: 6s","DescriptionJSON":null,"EffectRange":15,"ID":11404,"IconHD":"/i/003000/003272_hr1.png","Name":"Glower","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":15,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals damage equal to 50% of target's current HP.\n\nChance of successful attack is low. Has no effect on enemies whose level is higher than your own.","DescriptionJSON":null,"EffectRange":0,"ID":11405,"IconHD":"/i/003000/003273_hr1.png","Name":"Missile","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Restores own HP and the HP of all nearby party members by an amount equal to your current HP.","DescriptionJSON":null,"EffectRange":15,"ID":11406,"IconHD":"/i/003000/003274_hr1.png","Name":"White Wind","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":15,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals physical damage with a potency of 2,000 while incapacitating self.\n\nAdditional Effect: Inflicts Brush with Death on self\n\nDuration: 600s\n\nEffect will not be removed upon revival or further incapacitation.\n\nCannot be executed while under the effect of Brush with Death.","DescriptionJSON":null,"EffectRange":0,"ID":11407,"IconHD":"/i/003000/003275_hr1.png","Name":"Final Sting","PreservesCombo":0,"PrimaryCostType":2,"PrimaryCostValue":0,"Range":3,"Recast100ms":25,"SecondaryCostType":46,"SecondaryCostValue":2127,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 1,500 to all nearby enemies while incapacitating self.\n\nAdditional Effect: Potency is increased to 1,800 when you are under the effect of Toad Oil\n\nAdditional Effect: Inflicts Brush with Death on self\n\nDuration: 600s\n\nEffect will not be removed upon revival or further incapacitation.\n\nCannot be executed while under the effect of Brush with Death.","DescriptionJSON":null,"EffectRange":20,"ID":11408,"IconHD":"/i/003000/003276_hr1.png","Name":"Self-destruct","PreservesCombo":0,"PrimaryCostType":2,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":46,"SecondaryCostValue":2127,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Restores all HP and MP of a single party member while incapacitating self.\n\nAdditional Effect: Inflicts Brush with Death on self\n\nDuration: 600s\n\nEffect will not be removed upon revival or further incapacitation.\n\nCannot be executed while under the effect of Brush with Death.","DescriptionJSON":null,"EffectRange":0,"ID":11409,"IconHD":"/i/003000/003277_hr1.png","Name":"Transfusion","PreservesCombo":0,"PrimaryCostType":2,"PrimaryCostValue":0,"Range":25,"Recast100ms":25,"SecondaryCostType":46,"SecondaryCostValue":2127,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Increases evasion by 20%.\n\nDuration: 180s","DescriptionJSON":null,"EffectRange":0,"ID":11410,"IconHD":"/i/003000/003278_hr1.png","Name":"Toad Oil","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":1,"ClassJobLevel":1,"CooldownGroup":4,"Description":"Increases target's damage taken by 5%.\n\nDuration: 15s\n\nRecast timer cannot be affected by other spells. However, this action shares a recast timer with Peculiar Light.","DescriptionJSON":null,"EffectRange":0,"ID":11411,"IconHD":"/i/003000/003279_hr1.png","Name":"Off-guard","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":1,"Range":25,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Draws target towards caster.\n\nAdditional Effect: Stun\n\nDuration: 4s\n\nAdditional Effect: Increased enmity","DescriptionJSON":null,"EffectRange":0,"ID":11412,"IconHD":"/i/003000/003280_hr1.png","Name":"Sticky Tongue","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Reduces target's HP to a single digit.\n\nChance of successful attack is low. Has no effect on enemies whose level is higher than your own.","DescriptionJSON":null,"EffectRange":0,"ID":11413,"IconHD":"/i/003000/003281_hr1.png","Name":"Tail Screw","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Petrifies all enemies in a cone before you.\n\nDuration: 20s\n\nChance of successful attack is low.\n\nEnemy level must be a multiple of 5. Has no effect on enemies whose level is higher than your own.","DescriptionJSON":null,"EffectRange":6,"ID":11414,"IconHD":"/i/003000/003282_hr1.png","Name":"Level 5 Petrify","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Grants the effect of Waxing Nocturne, increasing damage dealt by 50% and movement speed by 30%.\n\nDuration: 15s\n\nWhen effect ends, the player is afflicted with Waning Nocturne, preventing the use of auto-attack, weaponskills, spells, or abilities.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":11415,"IconHD":"/i/003000/003283_hr1.png","Name":"Moon Flute","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Inflicts Doom on target.\n\nDuration: 15s\n\nWhen effect expires, the target will be KO'd.\n\nChance of successful attack is low. Has no effect on enemies whose level is higher than your own.","DescriptionJSON":null,"EffectRange":0,"ID":11416,"IconHD":"/i/003000/003284_hr1.png","Name":"Doom","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Reduces damage taken by 40% while reducing damage dealt by 40%, increasing enmity generation, and preventing casting interruptions via damage taken.\n\nEffect ends upon reuse.","DescriptionJSON":null,"EffectRange":0,"ID":11417,"IconHD":"/i/003000/003285_hr1.png","Name":"Mighty Guard","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":7,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Counters enemies with ice damage every time you suffer physical damage.\n\nCounter Potency: 40\n\nDuration: 15s\n\nAdditional Effect: 50% chance that when you are struck, the striker will be afflicted with Slow +20%\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":11418,"IconHD":"/i/003000/003286_hr1.png","Name":"Ice Spikes","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals ice damage to all nearby enemies with a potency of 220 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Deep Freeze\n\nDuration: 12s","DescriptionJSON":null,"EffectRange":6,"ID":11419,"IconHD":"/i/003000/003287_hr1.png","Name":"the Ram's Voice","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":10,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals lightning damage to all nearby enemies with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nEnemies within an 8-yalm radius will be unaffected.\n\nAdditional Effect: Paralysis\n\nDuration: 9s\n\nAdditional Effect: Potency is increased to 400 against most enemies afflicted with Deep Freeze. The Deep Freeze effect is also removed.","DescriptionJSON":null,"EffectRange":20,"ID":11420,"IconHD":"/i/003000/003288_hr1.png","Name":"the Dragon's Voice","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":2,"ClassJobLevel":1,"CooldownGroup":4,"Description":"Increases magic damage taken by all nearby enemies by 5%.\n\nDuration: 15s\n\nRecast timer cannot be affected by other spells. However, this action shares a recast timer with Off-guard.","DescriptionJSON":null,"EffectRange":6,"ID":11421,"IconHD":"/i/003000/003289_hr1.png","Name":"Peculiar Light","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage to all enemies in a cone before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Blind\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":6,"ID":11422,"IconHD":"/i/003000/003290_hr1.png","Name":"Ink Jet","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals physical damage with a potency of 10.\n\nAdditional Effect: Interrupts target","DescriptionJSON":null,"EffectRange":0,"ID":11423,"IconHD":"/i/003000/003291_hr1.png","Name":"Flying Sardine","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Reduces damage taken by 90% and nullifies most knockback and draw-in effects.\n\nUnable to move or take action for the duration of this effect.\n\nDuration: 10s\n\nIf used when Waxing Nocturne is active, its effect will transition immediately to Waning Nocturne.\n\nThe effect of this action cannot be ended manually.","DescriptionJSON":null,"EffectRange":0,"ID":11424,"IconHD":"/i/003000/003292_hr1.png","Name":"Diamondback","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":30,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals physical fire damage to target and all enemies nearby it with a potency of 200 for the first enemy, and 50% less for all remaining enemies.","DescriptionJSON":null,"EffectRange":4,"ID":11425,"IconHD":"/i/003000/003293_hr1.png","Name":"Fire Angon","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":1,"CooldownGroup":1,"Description":"Deals wind damage with a potency of 220 to all enemies at a designated location.\n\nAdditional Effect: Wind damage over time\n\nPotency: 40\n\nDuration: 6s\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":5,"ID":11426,"IconHD":"/i/003000/003294_hr1.png","Name":"Feather Rain","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":30,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":1,"CooldownGroup":1,"Description":"Deals fire damage with a potency of 300 to all enemies at a designated location.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":5,"ID":11427,"IconHD":"/i/003000/003295_hr1.png","Name":"Eruption","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":1,"CooldownGroup":2,"Description":"Deals physical earth damage to all enemies in a cone before you with a potency of 400 for the first enemy, and 50% less for all remaining enemies.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":6,"ID":11428,"IconHD":"/i/003000/003296_hr1.png","Name":"Mountain Buster","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":1,"CooldownGroup":2,"Description":"Deals lightning damage to target and all enemies nearby it with a potency of 400 for the first enemy, and 50% less for all remaining enemies.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":3,"ID":11429,"IconHD":"/i/003000/003297_hr1.png","Name":"Shock Strike","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":1,"CooldownGroup":3,"Description":"Deals ice damage to all enemies in a wide arc to your fore and flanks with a potency of 350 for the first enemy, and 50% less for all remaining enemies.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":12,"ID":11430,"IconHD":"/i/003000/003298_hr1.png","Name":"Glass Dance","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":3,"Description":"Counters enemies with water damage every time you suffer damage.\n\nCounter Potency: 50\n\nDuration: 30s\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":0,"ID":11431,"IconHD":"/i/003000/003299_hr1.png","Name":"Veil of the Whorl","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":4,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals wind damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.","DescriptionJSON":null,"EffectRange":20,"ID":18295,"IconHD":"/i/003000/003300_hr1.png","Name":"Alpine Draft","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals water damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: 15-yalm knockback","DescriptionJSON":null,"EffectRange":15,"ID":18296,"IconHD":"/i/003000/003301_hr1.png","Name":"Protean Wave","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals ice damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Enemies affected by Dropsy are frozen. The Dropsy effect is also removed.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":6,"ID":18297,"IconHD":"/i/003000/003302_hr1.png","Name":"Northerlies","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals lightning damage to target and all enemies nearby it with a potency of 220 for the first enemy, and 50% less for all remaining enemies.","DescriptionJSON":null,"EffectRange":6,"ID":18298,"IconHD":"/i/003000/003303_hr1.png","Name":"Electrogenesis","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":3,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals physical damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.","DescriptionJSON":null,"EffectRange":6,"ID":18299,"IconHD":"/i/003000/003304_hr1.png","Name":"Kaltstrahl","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals physical damage with a potency of 220.\n\nAdditional Effect: Paralysis\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":18300,"IconHD":"/i/003000/003305_hr1.png","Name":"Abyssal Transfixion","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Puts all nearby enemies to sleep.\n\nDuration: 40s\n\nCancels auto-attack upon execution.","DescriptionJSON":null,"EffectRange":3,"ID":18301,"IconHD":"/i/003000/003306_hr1.png","Name":"Chirp","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Removes one beneficial effect from all nearby enemies.","DescriptionJSON":null,"EffectRange":6,"ID":18302,"IconHD":"/i/003000/003307_hr1.png","Name":"Eerie Soundwave","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 100\n\nCure potency is increased to 500 when you are under the effect of Aetheric Mimicry: Healer.","DescriptionJSON":null,"EffectRange":0,"ID":18303,"IconHD":"/i/003000/003308_hr1.png","Name":"Pom Cure","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Creates a barrier around self and all nearby party members that absorbs damage equivalent to a heal of 100 potency.\n\nDuration: 30s\n\nBarrier strength is increased to absorb damage equivalent to a heal of 250 potency when you are under the effect of Aetheric Mimicry: Healer.\n\nEffect cannot be stacked with those of scholar's Galvanize or sage's Eukrasian Diagnosis and Eukrasian Prognosis.","DescriptionJSON":null,"EffectRange":20,"ID":18304,"IconHD":"/i/003000/003309_hr1.png","Name":"Gobskin","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":2,"ClassJobLevel":1,"CooldownGroup":8,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 250 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Lowers intelligence and mind attributes by 10%\n\nDuration: 10s\n\nAdditional Effect: Restores 10% of maximum MP\n\nThis action does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":8,"ID":18305,"IconHD":"/i/003000/003310_hr1.png","Name":"Magic Hammer","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":1,"ClassJobLevel":1,"CooldownGroup":9,"Description":"Direct damage intended for you to another party member.\n\nDuration: 12s\n\nCan only be executed when member is within 10 yalms. Does not activate with certain attacks.\n\nThis action does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":0,"ID":18306,"IconHD":"/i/003000/003311_hr1.png","Name":"Avail","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":10,"Range":10,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Provoke nearby enemies, placing yourself at the top of their enmity list.","DescriptionJSON":null,"EffectRange":4,"ID":18307,"IconHD":"/i/003000/003312_hr1.png","Name":"Frog Legs","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals wind damage with a potency of 210.","DescriptionJSON":null,"EffectRange":0,"ID":18308,"IconHD":"/i/003000/003313_hr1.png","Name":"Sonic Boom","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Increases the potency of the next physical damage spell cast by 80%.\n\nDuration: 30s\n\nEffect cannot be stacked with Boost.","DescriptionJSON":null,"EffectRange":0,"ID":18309,"IconHD":"/i/003000/003314_hr1.png","Name":"Whistle","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":4,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage to all enemies in a straight line before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Potency is increased to 400 when enemies are bound. The Bind effect is also removed.\n\nAdditional Effect: Slow +20%\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":20,"ID":18310,"IconHD":"/i/003000/003315_hr1.png","Name":"White Knight's Tour","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":4,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage to all enemies in a straight line before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Potency is increased to 400 when enemies are under the effect of Slow. The Slow effect is also removed.\n\nAdditional Effect: Bind\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":20,"ID":18311,"IconHD":"/i/003000/003316_hr1.png","Name":"Black Knight's Tour","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":11,"Description":"KOs all nearby enemies.\n\nChance of successful attack is low.\n\nEnemy level must be a multiple of 5. Has no effect on enemies whose level is higher than your own.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":6,"ID":18312,"IconHD":"/i/003000/003317_hr1.png","Name":"Level 5 Death","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":15,"Range":0,"Recast100ms":1800,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies randomly dealing 50%, 30%, 20%, or 10% of their HP.\n\nHas no effect on enemies whose level is higher than your own.","DescriptionJSON":null,"EffectRange":15,"ID":18313,"IconHD":"/i/003000/003318_hr1.png","Name":"Launcher","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":25,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":30,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 220.\n\nAdditional Effect: Stun\n\nDuration: 1s\n\nIgnores target's Stun resistance.","DescriptionJSON":null,"EffectRange":0,"ID":18314,"IconHD":"/i/003000/003319_hr1.png","Name":"Perpetual Ray","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Reduces target party member's damage taken by 5%.\n\nDuration: 6s\n\nIncreases damage reduction to 15% when you are under the effect of Aetheric Mimicry: Tank.","DescriptionJSON":null,"EffectRange":0,"ID":18315,"IconHD":"/i/003000/003320_hr1.png","Name":"Cactguard","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals physical damage with a potency of 50.\n\nPotency is increased to 500 when your HP is below 20%.","DescriptionJSON":null,"EffectRange":0,"ID":18316,"IconHD":"/i/003000/003321_hr1.png","Name":"Revenge Blast","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":3,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":100,"CastType":1,"ClassJobLevel":1,"CooldownGroup":13,"Description":"Resurrects target to a weakened state.\n\nThis action does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":0,"ID":18317,"IconHD":"/i/003000/003322_hr1.png","Name":"Angel Whisper","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":10,"Range":25,"Recast100ms":3000,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 50\n\nAdditional Effect: Removes one detrimental effect from all nearby party members\n\nCure potency is increased to 300 when you are under the effect of Aetheric Mimicry: Healer.","DescriptionJSON":null,"EffectRange":6,"ID":18318,"IconHD":"/i/003000/003323_hr1.png","Name":"Exuviation","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals lightning damage with a potency of 220.\n\nAdditional Effect: Heavy +40%\n\nDuration: 10s\n\nIgnores target's Heavy resistance.","DescriptionJSON":null,"EffectRange":0,"ID":18319,"IconHD":"/i/003000/003324_hr1.png","Name":"Reflux","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":1,"ClassJobLevel":1,"CooldownGroup":12,"Description":"Deals unaspected damage with a potency of 250.\n\nAdditional Effect: Increases maximum HP by 20%\n\nDuration: 15s\n\nIncreases duration to 70s when you are under the effect of Aetheric Mimicry: Tank.\n\nAdditional Effect: Restores an amount of own HP equal to damage dealt\n\nThis action does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":0,"ID":18320,"IconHD":"/i/003000/003325_hr1.png","Name":"Devour","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":3,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Afflicts target with Physical Attenuation, Astral Attenuation, or Umbral Attenuation.\n\nDuration: 30s\n\nPhysical Attenuation Effect: Increases damage taken from physical attacks by 5%\n\nAstral Attenuation Effect: Increases damage taken from fire-, wind-, and lightning-aspected attacks by 5%\n\nUmbral Attenuation Effect: Increases damage taken from water-, earth-, and ice-aspected attacks by 5%\n\nOnly one of these statuses can be applied to a target at a time.","DescriptionJSON":null,"EffectRange":0,"ID":18321,"IconHD":"/i/003000/003326_hr1.png","Name":"Condensed Libra","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":10,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Mirror the aetheric properties of your target, granting yourself a beneficial effect corresponding with the target's role.\n\nIf target is a tank, grants Aetheric Mimicry: Tank, increasing your defense and augmenting certain blue magic spells.\n\nIf target is a DPS, grants Aetheric Mimicry: DPS, increasing critical hit rate and direct hit rate by 20%, as well as augmenting certain blue magic spells.\n\nIf target is a healer, grants Aetheric Mimicry: Healer, increasing healing magic potency by 20% and augmenting certain blue magic spells.\n\nCannot be cast on self. Effect ends upon reuse.","DescriptionJSON":null,"EffectRange":0,"ID":18322,"IconHD":"/i/003000/003327_hr1.png","Name":"Aetheric Mimicry","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":1,"CooldownGroup":6,"Description":"Deals earth damage to all enemies in a cone before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Grants Surpanakha's Fury, increasing potency of Surpanakha by 50%\n\nDuration: 3s\n\nCan be stacked up to 3 times.\n\nMaximum Charges: 4\n\nEffect is canceled upon execution of any action other than Surpanakha.","DescriptionJSON":null,"EffectRange":16,"ID":18323,"IconHD":"/i/003000/003328_hr1.png","Name":"Surpanakha","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":1,"CooldownGroup":7,"Description":"Deals unaspected damage to all nearby enemies with a potency of 300 for the first enemy, and 50% less for all remaining enemies.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":15,"ID":18324,"IconHD":"/i/003000/003329_hr1.png","Name":"Quasar","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":2,"ClassJobLevel":1,"CooldownGroup":7,"Description":"Delivers a jumping physical attack to target and all enemies nearby it with a potency of 300 for the first enemy, and 50% less for all remaining enemies.\n\nCannot be executed while bound.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":6,"ID":18325,"IconHD":"/i/003000/003330_hr1.png","Name":"J Kick","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":5,"Description":"Delivers a threefold attack, each hit with a potency of 150.\n\nThis action does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":0,"ID":23264,"IconHD":"/i/003000/003331_hr1.png","Name":"Triple Trident","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":3,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals lightning damage to target and all enemies nearby it with a potency of 100 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Increases the potency of the next physical damage spell cast by 100\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":6,"ID":23265,"IconHD":"/i/003000/003332_hr1.png","Name":"Tingle","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":4,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Stun\n\nDuration: 3s","DescriptionJSON":null,"EffectRange":20,"ID":23266,"IconHD":"/i/003000/003333_hr1.png","Name":"Tatami-gaeshi","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":14,"Description":"Grants Cold Fog to self.\n\nDuration: 5s\n\nEffect changes to Touch of Frost if damage is taken.\n\nTouch of Frost Effect: Action changes from Cold Fog to White Death\n\nDuration: 15s\n\n\n\nWhite Death\n\nDeals ice damage with a potency of 400.\n\nAdditional Effect: Deep Freeze\n\nDuration: 10s\n\nCan only be executed while under the effect of Touch of Frost.","DescriptionJSON":null,"EffectRange":0,"ID":23267,"IconHD":"/i/003000/003334_hr1.png","Name":"Cold Fog","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 140 to all nearby enemies.\n\nAction effect changes, restoring own HP and the HP of all nearby party members when you are under the effect of Aetheric Mimicry: Healer.\n\nCure Potency: 300","DescriptionJSON":null,"EffectRange":15,"ID":23269,"IconHD":"/i/003000/003336_hr1.png","Name":"Stotram","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 100 to target and all enemies nearby it.\n\nPotency increases to 500 when used against undead enemies.","DescriptionJSON":null,"EffectRange":6,"ID":23270,"IconHD":"/i/003000/003337_hr1.png","Name":"Saintly Beam","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":4,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals earth damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.","DescriptionJSON":null,"EffectRange":20,"ID":23271,"IconHD":"/i/003000/003338_hr1.png","Name":"Feculent Flood","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":16,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 400\n\nAdditional Effect: Grants healing over time effect when you are under the effect of Aetheric Mimicry: Healer\n\nCure Potency: 200\n\nDuration: 15s\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":20,"ID":23272,"IconHD":"/i/003000/003339_hr1.png","Name":"Angel's Snack","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":17,"Description":"Summons a chelonian gate, reducing damage taken by 20%.\n\nDuration: 10s\n\nAdditional Effect: Grants Auspicious Trance after taking damage equal to 30% of maximum HP\n\nAuspicious Trance Effect: Action changes from Chelonian Gate to Divine Cataract\n\nChelonian Gate effect ends upon using another action or moving (including facing a different direction).\n\nAuspicious Trance ends upon losing the effect of Chelonian Gate.\n\nShares a recast timer with certain blue magic spells.\n\n\n\nDivine Cataract\n\nDeals water damage to all nearby enemies with a potency of 500 for the first enemy, and 50% less for all remaining enemies.\n\nPotency increases to 1,000 when you are under the effect of Aetheric Mimicry: Tank.\n\nCan only be executed when under the effect of Auspicious Trance.","DescriptionJSON":null,"EffectRange":0,"ID":23273,"IconHD":"/i/003000/003340_hr1.png","Name":"Chelonian Gate","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":17,"Description":"Deals unaspected damage with a potency of 400.\n\nAdditional Effect: 10-yalm knockback\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":0,"ID":23275,"IconHD":"/i/003000/003342_hr1.png","Name":"The Rose of Destruction","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Increases movement speed by 30%, and healing magic potency and damage dealt by 100%. Also ignores the damage penalty inflicted by Mighty Guard.\n\nCan only be used in duties intended for two or more players while playing alone, while no other party members are in the instance, or when all party members are incapacitated. Effect ends when joined by one or more party members.","DescriptionJSON":null,"EffectRange":0,"ID":23276,"IconHD":"/i/003000/003343_hr1.png","Name":"Basic Instinct","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":11,"Description":"KOs all nearby enemies afflicted with Deep Freeze or Petrification. Has no effect on enemies whose level is higher than your own, and certain others.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":6,"ID":23277,"IconHD":"/i/003000/003344_hr1.png","Name":"Ultravibration","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":5,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals ice damage to target and all enemies nearby it with a potency of 220 for the first enemy, and 50% less for all remaining enemies.","DescriptionJSON":null,"EffectRange":6,"ID":23278,"IconHD":"/i/003000/003345_hr1.png","Name":"Blaze","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals fire damage to target and all enemies nearby it with a potency of 220 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Enemies affected by Lightheaded suffer damage over time\n\nPotency: 50\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":6,"ID":23279,"IconHD":"/i/003000/003346_hr1.png","Name":"Mustard Bomb","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":16,"Description":"Reduces damage taken by 20%.\n\nDuration: 15s\n\nIncreases damage reduction to 40% when you are under the effect of Aetheric Mimicry: Tank.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":0,"ID":23280,"IconHD":"/i/003000/003347_hr1.png","Name":"Dragon Force","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":4,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 50 to all enemies in a straight line before you.\n\nAdditional Effect: Unaspected damage over time\n\nPotency: 50\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":20,"ID":23281,"IconHD":"/i/003000/003348_hr1.png","Name":"Aetherial Spark","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals water damage to all nearby enemies with a potency of 220 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Draw-in","DescriptionJSON":null,"EffectRange":15,"ID":23282,"IconHD":"/i/003000/003349_hr1.png","Name":"Hydro Pull","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":4,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals water damage to all enemies in a straight line before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: 10-yalm knockback to all enemies and party members in range\n\nCannot be used outside of combat or when target is suffering from certain enfeeblements.","DescriptionJSON":null,"EffectRange":15,"ID":23283,"IconHD":"/i/003000/003350_hr1.png","Name":"Malediction of Water","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nPotency increases to 300 when partied with your personal chocobo.","DescriptionJSON":null,"EffectRange":8,"ID":23284,"IconHD":"/i/003000/003351_hr1.png","Name":"Choco Meteor","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":2,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":1,"ClassJobLevel":1,"CooldownGroup":16,"Description":"Deals an unaspected eightfold attack, each hit with a potency of 50.\n\nPotency is increased to 100 when you are under the effect of Aetheric Mimicry: DPS.\n\nShares a recast timer with certain blue magic spells.","DescriptionJSON":null,"EffectRange":0,"ID":23285,"IconHD":"/i/003000/003352_hr1.png","Name":"Matra Magic","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}],"37":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 170 .","DescriptionJSON":null,"EffectRange":0,"ID":16137,"IconHD":"/i/003000/003401_hr1.png","Name":"Keen Edge","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":2,"CooldownGroup":11,"Description":"Increases damage dealt by 20%.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":16138,"IconHD":"/i/003000/003402_hr1.png","Name":"No Mercy","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":16137,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 120 .\n\nCombo Action: Keen Edge\n\nCombo Potency: 260 Combo Bonus: Restores own HP\n\nCure Potency: 200
\nCombo Bonus: Creates a barrier which nullifies damage equaling HP restored
\n
\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":16139,"IconHD":"/i/003000/003403_hr1.png","Name":"Brutal Shell","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":6,"CooldownGroup":16,"Description":"Increases parry rate by 50% while reducing damage taken by 10%.\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":16140,"IconHD":"/i/003000/003404_hr1.png","Name":"Camouflage","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":10,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby enemies.","DescriptionJSON":null,"EffectRange":5,"ID":16141,"IconHD":"/i/003000/003405_hr1.png","Name":"Demon Slice","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":10,"CooldownGroup":2,"Description":"Significantly increases enmity generation.\n\nEffect ends upon reuse.","DescriptionJSON":null,"EffectRange":0,"ID":16142,"IconHD":"/i/003000/003406_hr1.png","Name":"Royal Guard","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":30,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Delivers a ranged attack with a potency of 150.\n\nAdditional Effect: Increased enmity","DescriptionJSON":null,"EffectRange":0,"ID":16143,"IconHD":"/i/003000/003407_hr1.png","Name":"Lightning Shot","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":18,"CooldownGroup":5,"Description":"Delivers an attack with a potency of 250.","DescriptionJSON":null,"EffectRange":0,"ID":16144,"IconHD":"/i/003000/003408_hr1.png","Name":"Danger Zone","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":300,"SecondaryCostType":63,"SecondaryCostValue":259,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":16139,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":26,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 120 .\n\nCombo Action: Brutal Shell\n\nCombo Potency: 340
\nCombo Bonus: Adds a Cartridge to your Powder Gauge","DescriptionJSON":null,"EffectRange":0,"ID":16145,"IconHD":"/i/003000/003409_hr1.png","Name":"Solid Barrel","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":6,"Description":"Delivers an attack with a potency of 380. Additional Effect: Grants Ready to Rip
\n
\nDuration: 10s
\n
\nEffect of Ready to Rip ends upon execution of any weaponskill.
\n
\n Cartridge Cost: 1\n\nThis weaponskill does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":0,"ID":16146,"IconHD":"/i/003000/003410_hr1.png","Name":"Gnashing Fang","PreservesCombo":1,"PrimaryCostType":55,"PrimaryCostValue":1,"Range":"-1","Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":16146,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 460.\n\nCombo Action: Gnashing Fang
\nCombo Bonus: Grants Ready to Tear
\n
\nDuration: 10s
\n
\nEffect of Ready to Tear ends upon execution of any weaponskill. ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16147,"IconHD":"/i/003000/003411_hr1.png","Name":"Savage Claw","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":15,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":38,"CooldownGroup":22,"Description":"Reduces damage taken by 30%.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":16148,"IconHD":"/i/003000/003412_hr1.png","Name":"Nebula","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":16141,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby enemies.\n\nCombo Action: Demon Slice\n\nCombo Potency: 160\n\nCombo Bonus: Adds a Cartridge to your Powder Gauge","DescriptionJSON":null,"EffectRange":5,"ID":16149,"IconHD":"/i/003000/003413_hr1.png","Name":"Demon Slaughter","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":16147,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 540.\n\nCombo Action: Savage Claw
\nCombo Bonus: Grants Ready to Gouge
\n
\nDuration: 10s
\n
\nEffect of Ready to Gouge ends upon execution of any weaponskill. ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16150,"IconHD":"/i/003000/003414_hr1.png","Name":"Wicked Talon","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":15,"SecondaryCostValue":2,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":20,"Description":"Grants Regen to target.\n\nCure Potency: 200\n\nDuration: 18s
\nMaximum Charges: 2","DescriptionJSON":null,"EffectRange":0,"ID":16151,"IconHD":"/i/003000/003415_hr1.png","Name":"Aurora","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":25,"Description":"Reduces HP to 1 and renders you impervious to most attacks.\n\nDuration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":16152,"IconHD":"/i/003000/003416_hr1.png","Name":"Superbolide","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":3600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":54,"CooldownGroup":14,"Description":"Delivers an attack with a potency of 300.\n\nAdditional Effect: Damage over time\n\nPotency: 60\n\nDuration: 30s\n\nThis weaponskill does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":0,"ID":16153,"IconHD":"/i/003000/003417_hr1.png","Name":"Sonic Break","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":56,"CooldownGroup":10,"Description":"Delivers a jumping attack with a potency of 150.\n\nMaximum Charges: 2\n\nCannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":16154,"IconHD":"/i/003000/003418_hr1.png","Name":"Rough Divide","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":1,"Description":"Allows the firing of successive rounds with your gunblade.\n\nGnashing Fang may be followed by Jugular Rip.\n\nSavage Claw may be followed by Abdomen Tear.\n\nWicked Talon may be followed by Eye Gouge.
\nBurst Strike may be followed by Hypervelocity.","DescriptionJSON":null,"EffectRange":0,"ID":16155,"IconHD":"/i/003000/003419_hr1.png","Name":"Continuation","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":10,"SecondaryCostType":73,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 200.\n\nCan only be executed when Ready to Rip.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16156,"IconHD":"/i/003000/003420_hr1.png","Name":"Jugular Rip","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":1842,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 240.\n\nCan only be executed when Ready to Tear.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16157,"IconHD":"/i/003000/003421_hr1.png","Name":"Abdomen Tear","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":1843,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 280.\n\nCan only be executed when Ready to Gouge.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16158,"IconHD":"/i/003000/003422_hr1.png","Name":"Eye Gouge","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":1844,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":62,"CooldownGroup":12,"Description":"Delivers an attack with a potency of 150 to all nearby enemies.\n\nAdditional Effect: Damage over time\n\nPotency: 60\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":5,"ID":16159,"IconHD":"/i/003000/003423_hr1.png","Name":"Bow Shock","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":64,"CooldownGroup":17,"Description":"Reduces magic damage taken by self and nearby party members by 10%.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":15,"ID":16160,"IconHD":"/i/003000/003424_hr1.png","Name":"Heart of Light","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":68,"CooldownGroup":4,"Description":"Reduces damage taken by a party member or self by 15%.\n\nDuration: 7s\n\nAdditional Effect: When targeting a party member while under the effect of Brutal Shell, that effect is also granted to the target\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":16161,"IconHD":"/i/003000/003425_hr1.png","Name":"Heart of Stone","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":250,"SecondaryCostType":63,"SecondaryCostValue":424,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 380. Additional Effect: Grants Ready to Blast
\n
\nDuration: 10s
\n
\nEffect of Ready to Blast ends upon execution of any weaponskill.
\n
\n Cartridge Cost: 1","DescriptionJSON":null,"EffectRange":0,"ID":16162,"IconHD":"/i/003000/003426_hr1.png","Name":"Burst Strike","PreservesCombo":1,"PrimaryCostType":55,"PrimaryCostValue":1,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 290 to all nearby enemies.\n\nCartridge Cost: 1","DescriptionJSON":null,"EffectRange":5,"ID":16163,"IconHD":"/i/003000/003427_hr1.png","Name":"Fated Circle","PreservesCombo":1,"PrimaryCostType":55,"PrimaryCostValue":1,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":15,"Description":"Draws aetheric energy from target, adding 3 Cartridges to your Powder Gauge.","DescriptionJSON":null,"EffectRange":0,"ID":16164,"IconHD":"/i/003000/003428_hr1.png","Name":"Bloodfest","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":5,"Description":"Delivers an attack with a potency of 700.","DescriptionJSON":null,"EffectRange":0,"ID":16165,"IconHD":"/i/003000/003429_hr1.png","Name":"Blasting Zone","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Deals fire damage with a potency of 600 to target and all enemies nearby it.\n\nMudra Combination: ChiTen or JinTen\n\nCan only be executed while under the effect of Kassatsu.\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":16491,"IconHD":"/i/002000/002925_hr1.png","Name":"Goka Mekkyaku","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":20,"Recast100ms":15,"SecondaryCostType":32,"SecondaryCostValue":497,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Deals ice damage with a potency of 1,300.\n\nMudra Combination: ChiJin or TenJin\n\nCan only be executed while under the effect of Kassatsu.\n\nTriggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16492,"IconHD":"/i/002000/002926_hr1.png","Name":"Hyosho Ranryu","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":496,"Range":25,"Recast100ms":15,"SecondaryCostType":32,"SecondaryCostValue":497,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":82,"CooldownGroup":4,"Description":"Reduces damage taken by a party member or self by 15%.\n\nDuration: 8s\n\nAdditional Effect: When targeting a party member while under the effect of Brutal Shell, that effect is also granted to the target\n\nDuration: 30s\n\nAdditional Effect: Grants Clarity of Corundum to target\n\nClarity of Corundum Effect: Reduces damage taken by 15%\n\nDuration: 4s\n\nAdditional Effect: Grants Catharsis of Corundum to target\n\nCatharsis of Corundum Effect: Restores HP when HP falls below 50% or upon effect duration expiration\n\nCure Potency: 900\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":25758,"IconHD":"/i/003000/003430_hr1.png","Name":"Heart of Corundum","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":250,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":86,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 180.\n\nCan only be executed when Ready to Blast.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25759,"IconHD":"/i/003000/003431_hr1.png","Name":"Hypervelocity","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2686,"Range":"-1","Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":90,"CooldownGroup":13,"Description":"Delivers an attack to all nearby enemies with a potency of 1,200 for the first enemy, and 20% less for all remaining enemies.\n\nCartridge Cost: 2\n\nThis weaponskill does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":5,"ID":25760,"IconHD":"/i/003000/003432_hr1.png","Name":"Double Down","PreservesCombo":1,"PrimaryCostType":55,"PrimaryCostValue":2,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Your shadow deals wind damage to target and all enemies within 5 yalms with a potency of 600 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Extends Huton duration by 10s to a maximum of 60s\n\nAdditional Effect: Increases Ninki Gauge by 10\n\nCan only be executed while under the effect of Phantom Kamaitachi Ready.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25774,"IconHD":"/i/002000/002929_hr1.png","Name":"Phantom Kamaitachi","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":20,"Recast100ms":25,"SecondaryCostType":32,"SecondaryCostValue":2723,"TargetArea":0}],"38":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":18,"CastType":1,"ClassJobLevel":50,"CooldownGroup":58,"Description":"Delivers a critical hit with a potency of 640. Additional Effect: Grants a stack of Meditation, up to a maximum of 3
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7487,"IconHD":"/i/003000/003162_hr1.png","Name":"Midare Setsugekka","PreservesCombo":1,"PrimaryCostType":40,"PrimaryCostValue":0,"Range":6,"Recast100ms":25,"SecondaryCostType":72,"SecondaryCostValue":3,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":18,"CastType":2,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 280 to all nearby enemies. Additional Effect: Grants a stack of Meditation, up to a maximum of 3
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":7488,"IconHD":"/i/003000/003161_hr1.png","Name":"Tenka Goken","PreservesCombo":1,"PrimaryCostType":40,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":72,"SecondaryCostValue":2,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":18,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 200.\n\nAdditional Effect: Damage over time\n\nPotency: 45\n\nDuration: 60s Additional Effect: Grants a stack of Meditation, up to a maximum of 3
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":7489,"IconHD":"/i/003000/003160_hr1.png","Name":"Higanbana","PreservesCombo":1,"PrimaryCostType":40,"PrimaryCostValue":0,"Range":6,"Recast100ms":25,"SecondaryCostType":72,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 220. Additional Effect: 50% chance of granting Silken Symmetry
\n
\nDuration: 30s
\n
\n ※Action changes to Emboite while dancing.","DescriptionJSON":null,"EffectRange":0,"ID":15989,"IconHD":"/i/003000/003451_hr1.png","Name":"Cascade","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":15989,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100.\n\nCombo Action: Cascade\n\nCombo Potency: 280 Combo Bonus: 50% chance of granting Silken Flow
\n
\nDuration: 30s
\n
\n ※Action changes to Entrechat while dancing.","DescriptionJSON":null,"EffectRange":0,"ID":15990,"IconHD":"/i/003000/003452_hr1.png","Name":"Fountain","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":20,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 280. Additional Effect: 50% chance of granting a Fourfold Feather
\n
\n Can only be executed while under the effect of Silken Symmetry or Flourishing Symmetry .\n\n\n\n※Action changes to Jete while dancing.","DescriptionJSON":null,"EffectRange":0,"ID":15991,"IconHD":"/i/003000/003460_hr1.png","Name":"Reverse Cascade","PreservesCombo":1,"PrimaryCostType":85,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 340.\n\nAdditional Effect: 50% chance of granting a Fourfold Feather\n\nCan only be executed while under the effect of Silken Flow or Flourishing Flow .\n\n\n\n※Action changes to Pirouette while dancing.","DescriptionJSON":null,"EffectRange":0,"ID":15992,"IconHD":"/i/003000/003464_hr1.png","Name":"Fountainfall","PreservesCombo":1,"PrimaryCostType":86,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby enemies. Additional Effect: 50% chance of granting Silken Symmetry
\n
\nDuration: 30s
\n
\n ※Action changes to Emboite while dancing.","DescriptionJSON":null,"EffectRange":5,"ID":15993,"IconHD":"/i/003000/003453_hr1.png","Name":"Windmill","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":15993,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":25,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby enemies.\n\nCombo Action: Windmill\n\nCombo Potency: 140 Combo Bonus: 50% chance of granting Silken Flow
\n
\nDuration: 30s
\n
\n ※Action changes to Entrechat while dancing.","DescriptionJSON":null,"EffectRange":5,"ID":15994,"IconHD":"/i/003000/003461_hr1.png","Name":"Bladeshower","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 140 to all nearby enemies.\n\nAdditional Effect: 50% chance of granting a Fourfold Feather\n\nCan only be executed while under the effect of Silken Symmetry or Flourishing Symmetry .\n\n\n\n※Action changes to Jete while dancing.","DescriptionJSON":null,"EffectRange":5,"ID":15995,"IconHD":"/i/003000/003463_hr1.png","Name":"Rising Windmill","PreservesCombo":1,"PrimaryCostType":85,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 180 to all nearby enemies.\n\nAdditional Effect: 50% chance of granting a Fourfold Feather\n\nCan only be executed while under the effect of Silken Flow or Flourishing Flow .\n\n\n\n※Action changes to Pirouette while dancing.","DescriptionJSON":null,"EffectRange":5,"ID":15996,"IconHD":"/i/003000/003465_hr1.png","Name":"Bloodshower","PreservesCombo":1,"PrimaryCostType":86,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":9,"Description":"Begin dancing, granting yourself Standard Step.\n\nDuration: 15s\n\nAction changes to Standard Finish while dancing.\n\nOnly Standard Finish, En Avant, step actions, role actions, Sprint, and Limit Break can be performed while dancing.\n\nRecast timer cannot be affected by status effects or gear attributes.","DescriptionJSON":null,"EffectRange":0,"ID":15997,"IconHD":"/i/003000/003454_hr1.png","Name":"Standard Step","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":20,"Description":"Begin dancing, granting yourself Technical Step.\n\nDuration: 15s\n\nAction changes to Technical Finish while dancing.\n\nOnly Technical Finish, En Avant, step actions, role actions, Sprint, and Limit Break can be performed while dancing.\n\nRecast timer cannot be affected by status effects or gear attributes.","DescriptionJSON":null,"EffectRange":0,"ID":15998,"IconHD":"/i/003000/003473_hr1.png","Name":"Technical Step","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Perform an emboite.\n\nWhen performed together with other step actions, in sequence, the potency of Standard Finish and Technical Finish is increased.\n\nRecast timer cannot be affected by status effects or gear attributes.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":15999,"IconHD":"/i/003000/003455_hr1.png","Name":"Emboite","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":90,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Perform an entrechat.\n\nWhen performed together with other step actions, in sequence, the potency of Standard Finish and Technical Finish is increased.\n\nRecast timer cannot be affected by status effects or gear attributes.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16000,"IconHD":"/i/003000/003456_hr1.png","Name":"Entrechat","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":90,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Perform a jete.\n\nWhen performed together with other step actions, in sequence, the potency of Standard Finish and Technical Finish is increased.\n\nRecast timer cannot be affected by status effects or gear attributes.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16001,"IconHD":"/i/003000/003457_hr1.png","Name":"Jete","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":90,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Perform a pirouette.\n\nWhen performed together with other step actions, in sequence, the potency of Standard Finish and Technical Finish is increased.\n\nRecast timer cannot be affected by status effects or gear attributes.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16002,"IconHD":"/i/003000/003458_hr1.png","Name":"Pirouette","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":90,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.\n\n0 Steps: 360\n\n1 Step: 540\n\n2 Steps: 720 Step Bonus: Grants Standard Finish and Esprit to self and party member designated as your Dance Partner Damage bonus of Standard Finish varies with number of successful steps.\n\n1 Step: 2%\n\n2 Steps: 5%\n\nDuration: 60s\n\nRecast timer cannot be affected by status effects or gear attributes.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":16003,"IconHD":"/i/003000/003459_hr1.png","Name":"Standard Finish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":70,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.\n\n0 Steps: 350\n\n1 Step: 540\n\n2 Steps: 720\n\n3 Steps: 900\n\n4 Steps: 1,200 Step Bonus: Grants Technical Finish and Esprit to self and party members Damage bonus of Technical Finish varies with number of successful steps.\n\n1 Step: 1%\n\n2 Steps: 2%\n\n3 Steps: 3%\n\n4 Steps: 5%\n\nDuration: 20s Additional Effect: Grants Flourishing Finish
\n
\nDuration: 30s
\n
\n Recast timer cannot be affected by status effects or gear attributes. ※Action changes to Tillana upon execution.
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":16004,"IconHD":"/i/003000/003474_hr1.png","Name":"Technical Finish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":4,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":76,"CooldownGroup":58,"Description":"Delivers an attack to target and all enemies nearby it with a potency of 480 for the first enemy, and 50% less for all remaining enemies.\n\nEsprit Gauge Cost: 50","DescriptionJSON":null,"EffectRange":5,"ID":16005,"IconHD":"/i/003000/003476_hr1.png","Name":"Saber Dance","PreservesCombo":1,"PrimaryCostType":54,"PrimaryCostValue":50,"Range":"-1","Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":1,"Description":"Grants you Closed Position and designates a party member as your Dance Partner, allowing you to share the effects of Standard Finish, Curing Waltz, Devilment, and Tillana with said party member.\n\nEffect ends upon reuse.","DescriptionJSON":null,"EffectRange":0,"ID":16006,"IconHD":"/i/003000/003470_hr1.png","Name":"Closed Position","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":300,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":2,"Description":"Delivers an attack with a potency of 150. Additional Effect: 50% chance of granting Threefold Fan Dance
\n
\nDuration: 30s
\n
\n Can only be executed while in possession of Fourfold Feathers.","DescriptionJSON":null,"EffectRange":0,"ID":16007,"IconHD":"/i/003000/003462_hr1.png","Name":"Fan Dance","PreservesCombo":1,"PrimaryCostType":53,"PrimaryCostValue":1,"Range":"-1","Recast100ms":10,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":50,"CooldownGroup":3,"Description":"Delivers an attack with a potency of 100 to all nearby enemies. Additional Effect: 50% chance of granting Threefold Fan Dance
\n
\nDuration: 30s
\n
\n Can only be executed while in possession of Fourfold Feathers.","DescriptionJSON":null,"EffectRange":5,"ID":16008,"IconHD":"/i/003000/003466_hr1.png","Name":"Fan Dance II","PreservesCombo":1,"PrimaryCostType":53,"PrimaryCostValue":1,"Range":0,"Recast100ms":10,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":66,"CooldownGroup":4,"Description":"Delivers an attack to target and all enemies nearby it with a potency of 200 for the first enemy, and 50% less for all remaining enemies.\n\nCan only be executed while under the effect of Threefold Fan Dance.","DescriptionJSON":null,"EffectRange":5,"ID":16009,"IconHD":"/i/003000/003472_hr1.png","Name":"Fan Dance III","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":10,"SecondaryCostType":91,"SecondaryCostValue":1820,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":19,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":10,"Description":"Quickly dash 10 yalms forward. Maximum Charges: Cannot be executed while bound.","DescriptionJSON":null,"EffectRange":0,"ID":16010,"IconHD":"/i/003000/003467_hr1.png","Name":"En Avant","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":62,"CooldownGroup":21,"Description":"Increases critical hit rate and direct hit rate by 20%.\n\nDuration: 20s\n\nAdditional Effect: Party member designated as your Dance Partner will also receive the effect of Devilment
\nAdditional Effect: Grants Flourishing Starfall
\n
\nDuration: 20s","DescriptionJSON":null,"EffectRange":0,"ID":16011,"IconHD":"/i/003000/003471_hr1.png","Name":"Devilment","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":56,"CooldownGroup":23,"Description":"Reduces damage taken by self and nearby party members by 10%.\n\nDuration: 15s\n\nEffect cannot be stacked with bard's Troubadour or machinist's Tactician.","DescriptionJSON":null,"EffectRange":20,"ID":16012,"IconHD":"/i/003000/003469_hr1.png","Name":"Shield Samba","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":72,"CooldownGroup":11,"Description":"Grants you the effects of Flourishing Symmetry, Flourishing Flow, Threefold Fan Dance, and Fourfold Fan Dance .\n\nDuration: 30s\n\nCan only be executed while in combat.","DescriptionJSON":null,"EffectRange":0,"ID":16013,"IconHD":"/i/003000/003475_hr1.png","Name":"Flourish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":128,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":7,"ClassJobLevel":80,"CooldownGroup":19,"Description":"Dance to the beat of your own drum, granting Rising Rhythm to self.\n\nStacks increase every 3 seconds, up to a maximum of 4.\n\nAdditional Effect: Healing over time for self and nearby party members\n\nCure Potency: 100\n\nDuration: 15s\n\nEffect ends upon using another action or moving (including facing a different direction).\n\nCancels auto-attack upon execution.\n\n\n\n※Action changes to Improvised Finish upon execution.","DescriptionJSON":null,"EffectRange":8,"ID":16014,"IconHD":"/i/003000/003477_hr1.png","Name":"Improvisation","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":52,"CooldownGroup":12,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 300\n\nAdditional Effect: Party member designated as your Dance Partner will also heal self and nearby party members","DescriptionJSON":null,"EffectRange":3,"ID":16015,"IconHD":"/i/003000/003468_hr1.png","Name":"Curing Waltz","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":91,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.\n\n0 Steps: 360\n\n1 Step: 540\n\n2 Steps: 720 Step Bonus: Grants Standard Finish and Esprit to self and party member designated as your Dance Partner Damage bonus of Standard Finish varies with number of successful steps.\n\n1 Step: 2%\n\n2 Steps: 5%\n\nDuration: 60s\n\nRecast timer cannot be affected by status effects or gear attributes.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":16191,"IconHD":"/i/003000/003459_hr1.png","Name":"Single Standard Finish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":2,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":70,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.\n\n0 Steps: 350\n\n1 Step: 540\n\n2 Steps: 720\n\n3 Steps: 900\n\n4 Steps: 1,200 Step Bonus: Grants Technical Finish and Esprit to self and party members Damage bonus of Technical Finish varies with number of successful steps.\n\n1 Step: 1%\n\n2 Steps: 2%\n\n3 Steps: 3%\n\n4 Steps: 5%\n\nDuration: 20s Additional Effect: Grants Flourishing Finish
\n
\nDuration: 30s
\n
\n Recast timer cannot be affected by status effects or gear attributes. ※Action changes to Tillana upon execution.
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":16195,"IconHD":"/i/003000/003474_hr1.png","Name":"Triple Technical Finish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":7,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":70,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.\n\n0 Steps: 350\n\n1 Step: 540\n\n2 Steps: 720\n\n3 Steps: 900\n\n4 Steps: 1,200 Step Bonus: Grants Technical Finish and Esprit to self and party members Damage bonus of Technical Finish varies with number of successful steps.\n\n1 Step: 1%\n\n2 Steps: 2%\n\n3 Steps: 3%\n\n4 Steps: 5%\n\nDuration: 20s Additional Effect: Grants Flourishing Finish
\n
\nDuration: 30s
\n
\n Recast timer cannot be affected by status effects or gear attributes. ※Action changes to Tillana upon execution.
\n
\n ※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":16196,"IconHD":"/i/003000/003474_hr1.png","Name":"Quadruple Technical Finish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":90,"SecondaryCostValue":8,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":76,"CooldownGroup":11,"Description":"Delivers an attack with a potency of 200.\n\nAdditional Effect: Damage over time\n\nPotency: 45\n\nDuration: 60s\n\nEffect cannot be stacked with Higanbana.\n\nTriggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16484,"IconHD":"/i/003000/003181_hr1.png","Name":"Kaeshi: Higanbana","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":6,"Recast100ms":600,"SecondaryCostType":14,"SecondaryCostValue":1,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":0,"Description":"Delivers an attack with a potency of 680.\n\nPotency increases as Battery Gauge exceeds required cost at time of deployment. If this action is not used manually while the Automaton Queen is active, it will be triggered automatically immediately before shutting down.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":16503,"IconHD":"/i/003000/003503_hr1.png","Name":"Pile Bunker","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":3,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":86,"CooldownGroup":0,"Description":"All enemies standing in the corrupted earth of Doton take additional earth damage with a potency of 50.\n\nRequires Hakke Mujinsatsu to be executed as a combo action or upon executing Katon, Goka Mekkyaku, or Phantom Kamaitachi.\n\nEffect can only be triggered while Doton is active.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":25776,"IconHD":"/i/002000/002930_hr1.png","Name":"Hollow Nozuchi","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":100,"Recast100ms":0,"SecondaryCostType":32,"SecondaryCostValue":501,"TargetArea":1},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":90,"CooldownGroup":3,"Description":"Delivers a critical hit to all enemies in a cone before you with a potency of 800 for the first enemy, and 75% less for all remaining enemies.\n\nTriggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":8,"ID":25782,"IconHD":"/i/003000/003188_hr1.png","Name":"Kaeshi: Namikiri","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":8,"Recast100ms":10,"SecondaryCostType":14,"SecondaryCostValue":4,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":86,"CooldownGroup":0,"Description":"Delivers an attack with a potency of 780.\n\nPotency increases as Battery Gauge exceeds required cost at time of deployment.\n\nThe Automaton Queen shuts down after execution. If this action is not used manually while the Automaton Queen is active, it will be triggered automatically immediately before shutting down.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":25787,"IconHD":"/i/003000/003047_hr1.png","Name":"Crowned Collider","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":3,"Recast100ms":0,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":80,"CooldownGroup":6,"Description":"Creates a barrier around self and all nearby party members. Damage absorbed increases with stacks of Rising Rhythm.\n\n0 Stacks: 5% of maximum HP\n\n1 Stack: 6% of maximum HP\n\n2 Stacks: 7% of maximum HP\n\n3 Stacks: 8% of maximum HP\n\n4 Stacks: 10% of maximum HP\n\nDuration: 30s\n\nCan only be executed while Improvisation is active.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":8,"ID":25789,"IconHD":"/i/003000/003479_hr1.png","Name":"Improvised Finish","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":15,"SecondaryCostType":91,"SecondaryCostValue":1827,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Delivers an attack to all nearby enemies with a potency of 360 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Grants Standard Finish and Esprit to self and party member designated as your Dance Partner\n\nStandard Finish Effect: Increases damage dealt by 5%\n\nDuration: 60s\n\nCan only be executed while under the effect of Flourishing Finish.\n\nRecast timer cannot be affected by status effects or gear attributes.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":15,"ID":25790,"IconHD":"/i/003000/003480_hr1.png","Name":"Tillana","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2698,"Range":0,"Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":2698,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":86,"CooldownGroup":5,"Description":"Delivers an attack to all enemies in a cone before you with a potency of 300 for the first enemy, and 50% less for all remaining enemies.\n\nCan only be executed while under the effect of Fourfold Fan Dance.","DescriptionJSON":null,"EffectRange":15,"ID":25791,"IconHD":"/i/003000/003481_hr1.png","Name":"Fan Dance IV","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2699,"Range":15,"Recast100ms":10,"SecondaryCostType":91,"SecondaryCostValue":2699,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Delivers a critical direct hit to all enemies in a straight line before you with a potency of 600 for the first enemy, and 75% less for all remaining enemies.\n\nCan only be executed while under the effect of Flourishing Starfall.","DescriptionJSON":null,"EffectRange":25,"ID":25792,"IconHD":"/i/003000/003482_hr1.png","Name":"Starfall Dance","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2700,"Range":25,"Recast100ms":25,"SecondaryCostType":91,"SecondaryCostValue":2700,"TargetArea":0}],"39":[{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 300 .
\nAdditional Effect: Increases Soul Gauge by 10","DescriptionJSON":null,"EffectRange":0,"ID":24373,"IconHD":"/i/003000/003601_hr1.png","Name":"Slice","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":113,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":24373,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":5,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 140 .\n\nCombo Action: Slice\n\nCombo Potency: 380
\nCombo Bonus: Increases Soul Gauge by 10","DescriptionJSON":null,"EffectRange":0,"ID":24374,"IconHD":"/i/003000/003602_hr1.png","Name":"Waxing Slice","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":113,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":24374,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 140 .\n\nCombo Action: Waxing Slice\n\nCombo Potency: 460
\nCombo Bonus: Increases Soul Gauge by 10","DescriptionJSON":null,"EffectRange":0,"ID":24375,"IconHD":"/i/003000/003603_hr1.png","Name":"Infernal Slice","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":113,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":25,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 140 to all nearby enemies.
\nAdditional Effect: Increases Soul Gauge by 10","DescriptionJSON":null,"EffectRange":5,"ID":24376,"IconHD":"/i/003000/003604_hr1.png","Name":"Spinning Scythe","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":113,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":24376,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":45,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 120 to all nearby enemies.\n\nCombo Action: Spinning Scythe\n\nCombo Potency: 180
\nCombo Bonus: Increases Soul Gauge by 10","DescriptionJSON":null,"EffectRange":5,"ID":24377,"IconHD":"/i/003000/003605_hr1.png","Name":"Nightmare Scythe","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":113,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":10,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 300 .\n\nAdditional Effect: Afflicts target with Death's Design, increasing damage you deal target by 10%\n\nDuration: 30s\n\nExtends duration of Death's Design by 30s to a maximum of 60s.
\nAdditional Effect: Increases Soul Gauge by 10 if target is KO'd before effect expires","DescriptionJSON":null,"EffectRange":0,"ID":24378,"IconHD":"/i/003000/003606_hr1.png","Name":"Shadow of Death","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":35,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 100 to all nearby enemies.\n\nAdditional Effect: Afflicts target with Death's Design, increasing damage you deal target by 10%\n\nDuration: 30s\n\nExtends duration of Death's Design by 30s to a maximum of 60s.
\nAdditional Effect: Increases Soul Gauge by 10 if target is KO'd before effect expires","DescriptionJSON":null,"EffectRange":5,"ID":24379,"IconHD":"/i/003000/003607_hr1.png","Name":"Whorl of Death","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":60,"CooldownGroup":5,"Description":"Delivers an attack with a potency of 460.\n\nAdditional Effect: Increases Soul Gauge by 50 Maximum Charges: 2
\n
\n Shares a recast timer with Soul Scythe.","DescriptionJSON":null,"EffectRange":0,"ID":24380,"IconHD":"/i/003000/003608_hr1.png","Name":"Soul Slice","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":"-1","Recast100ms":300,"SecondaryCostType":113,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":65,"CooldownGroup":5,"Description":"Delivers an attack with a potency of 180 to all nearby enemies.\n\nAdditional Effect: Increases Soul Gauge by 50 Maximum Charges: 2
\n
\n Shares a recast timer with Soul Slice.","DescriptionJSON":null,"EffectRange":5,"ID":24381,"IconHD":"/i/003000/003609_hr1.png","Name":"Soul Scythe","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":113,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 400.\n\n460 when executed from a target's flank.\n\nEnhanced Gibbet Potency: 460\n\nFlank Enhanced Potency: 520\n\nAdditional Effect: Grants Enhanced Gallows\n\nDuration: 60s\n\nThe action Blood Stalk changes to Unveiled Gallows while under the effect of Enhanced Gallows. Additional Effect: Increases Shroud Gauge by 10
\n
\n Can only be executed while under the effect of Soul Reaver.
\n
\n
\n※Action changes to Void Reaping while under the effect of Enshrouded.","DescriptionJSON":null,"EffectRange":0,"ID":24382,"IconHD":"/i/003000/003610_hr1.png","Name":"Gibbet","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2587,"Range":"-1","Recast100ms":25,"SecondaryCostType":113,"SecondaryCostValue":2587,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 400.\n\n460 when executed from a target's rear.\n\nEnhanced Gallows Potency: 460\n\nRear Enhanced Potency: 520\n\nAdditional Effect: Grants Enhanced Gibbet\n\nDuration: 60s\n\nThe action Blood Stalk changes to Unveiled Gibbet while under the effect of Enhanced Gibbet. Additional Effect: Increases Shroud Gauge by 10
\n
\n Can only be executed while under the effect of Soul Reaver.
\n
\n
\n※Action changes to Cross Reaping while under the effect of Enshrouded.","DescriptionJSON":null,"EffectRange":0,"ID":24383,"IconHD":"/i/003000/003611_hr1.png","Name":"Gallows","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2587,"Range":"-1","Recast100ms":25,"SecondaryCostType":113,"SecondaryCostValue":2587,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":70,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 200 to all enemies in a cone before you. Additional Effect: Increases Shroud Gauge by 10
\n
\n Can only be executed while under the effect of Soul Reaver.
\n
\n
\n※Action changes to Grim Reaping while under the effect of Enshrouded.","DescriptionJSON":null,"EffectRange":8,"ID":24384,"IconHD":"/i/003000/003612_hr1.png","Name":"Guillotine","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":8,"Recast100ms":25,"SecondaryCostType":113,"SecondaryCostValue":2587,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":4,"ClassJobLevel":88,"CooldownGroup":58,"Description":"Delivers an attack to all enemies in a straight line before you with a potency of 520 for the first enemy, and 60% less for all remaining enemies.\n\nImmortal Sacrifice Cost: 1 stack\n\nPotency increases up to 800 as stacks of Immortal Sacrifice exceed minimum cost.\n\nAdditional Effect: Increases Shroud Gauge by 50\n\nCannot be executed while under the effect of Bloodsown Circle.\n\nConsumes all stacks of Immortal Sacrifice upon execution.","DescriptionJSON":null,"EffectRange":15,"ID":24385,"IconHD":"/i/003000/003613_hr1.png","Name":"Plentiful Harvest","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":15,"Recast100ms":25,"SecondaryCostType":127,"SecondaryCostValue":2592,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":13,"CastType":1,"ClassJobLevel":15,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 300 .","DescriptionJSON":null,"EffectRange":0,"ID":24386,"IconHD":"/i/003000/003614_hr1.png","Name":"Harpe","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":50,"CastType":1,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Grants Soulsow to self, changing the action to Harvest Moon.\n\nCast time is instant when used outside of battle.","DescriptionJSON":null,"EffectRange":0,"ID":24387,"IconHD":"/i/003000/003615_hr1.png","Name":"Soulsow","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 600 for the first enemy, and 50% less for all remaining enemies.\n\nCan only be executed while under the effect of Soulsow.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":5,"ID":24388,"IconHD":"/i/003000/003616_hr1.png","Name":"Harvest Moon","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2594,"Range":25,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":50,"CooldownGroup":1,"Description":"Summons your avatar to deliver an attack with a potency of 340. Additional Effect: Grants Soul Reaver
\n
\nDuration: 30s
\n
\nStack count will be reduced to 1 when already under the effect of Soul Reaver.
\n
\n Soul Gauge Cost: 50\n\nShares a recast timer with all avatar attacks except Gluttony.
\n
\n
\n※Action changes to Lemure's Slice while under the effect of Enshrouded.","DescriptionJSON":null,"EffectRange":0,"ID":24389,"IconHD":"/i/003000/003617_hr1.png","Name":"Blood Stalk","PreservesCombo":1,"PrimaryCostType":64,"PrimaryCostValue":50,"Range":"-1","Recast100ms":10,"SecondaryCostType":113,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":1,"Description":"Summons your avatar to deliver an attack with a potency of 400.\n\nAdditional Effect: Grants Soul Reaver\n\nDuration: 30s\n\nStack count will be reduced to 1 when already under the effect of Soul Reaver.\n\nSoul Gauge Cost: 50\n\nCan only be executed while under the effect of Enhanced Gibbet.\n\nShares a recast timer with all avatar attacks except Gluttony.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":24390,"IconHD":"/i/003000/003618_hr1.png","Name":"Unveiled Gibbet","PreservesCombo":1,"PrimaryCostType":64,"PrimaryCostValue":50,"Range":"-1","Recast100ms":10,"SecondaryCostType":113,"SecondaryCostValue":2588,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":1,"Description":"Summons your avatar to deliver an attack with a potency of 400.\n\nAdditional Effect: Grants Soul Reaver\n\nDuration: 30s\n\nStack count will be reduced to 1 when already under the effect of Soul Reaver.\n\nSoul Gauge Cost: 50\n\nCan only be executed while under the effect of Enhanced Gallows.\n\nShares a recast timer with all avatar attacks except Gluttony.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":24391,"IconHD":"/i/003000/003619_hr1.png","Name":"Unveiled Gallows","PreservesCombo":1,"PrimaryCostType":64,"PrimaryCostValue":50,"Range":"-1","Recast100ms":10,"SecondaryCostType":113,"SecondaryCostValue":2589,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":55,"CooldownGroup":1,"Description":"Summons your avatar to deliver an attack with a potency of 140 to all enemies in a cone before you. Additional Effect: Grants Soul Reaver
\n
\nDuration: 30s
\n
\nStack count will be reduced to 1 when already under the effect of Soul Reaver.
\n
\n Soul Gauge Cost: 50\n\nShares a recast timer with all avatar attacks except Gluttony.
\n
\n
\n※Action changes to Lemure's Scythe while under the effect of Enshrouded.","DescriptionJSON":null,"EffectRange":8,"ID":24392,"IconHD":"/i/003000/003620_hr1.png","Name":"Grim Swathe","PreservesCombo":1,"PrimaryCostType":64,"PrimaryCostValue":50,"Range":8,"Recast100ms":10,"SecondaryCostType":113,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":76,"CooldownGroup":10,"Description":"Summons your avatar to deal unaspected damage to target and all enemies nearby it with a potency of 500 for the first enemy, and 25% less for all remaining enemies.\n\nAdditional Effect: Grants 2 stacks of Soul Reaver\n\nDuration: 30s\n\nSoul Gauge Cost: 50","DescriptionJSON":null,"EffectRange":5,"ID":24393,"IconHD":"/i/003000/003621_hr1.png","Name":"Gluttony","PreservesCombo":1,"PrimaryCostType":64,"PrimaryCostValue":50,"Range":25,"Recast100ms":600,"SecondaryCostType":113,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":3,"Description":"Offers your flesh as a vessel to your avatar, gaining maximum stacks of Lemure Shroud.\n\nDuration: 30s\n\nCertain actions cannot be executed while playing host to your avatar.\n\nShroud Gauge Cost: 50","DescriptionJSON":null,"EffectRange":0,"ID":24394,"IconHD":"/i/003000/003622_hr1.png","Name":"Enshroud","PreservesCombo":1,"PrimaryCostType":65,"PrimaryCostValue":50,"Range":0,"Recast100ms":150,"SecondaryCostType":113,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 460.\n\nEnhanced Void Reaping Potency: 520\n\nAdditional Effect: Grants Enhanced Cross Reaping\n\nDuration: 30s Additional Effect: Grants Void Shroud
\n
\n Can only be executed while under the effect of Enshrouded.\n\nRecast timer cannot be affected by status effects or gear attributes.\n\nLemure Shroud Cost: 1\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":24395,"IconHD":"/i/003000/003623_hr1.png","Name":"Void Reaping","PreservesCombo":1,"PrimaryCostType":66,"PrimaryCostValue":1,"Range":"-1","Recast100ms":25,"SecondaryCostType":112,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 460.\n\nEnhanced Cross Reaping Potency: 520\n\nAdditional Effect: Grants Enhanced Void Reaping\n\nDuration: 30s Additional Effect: Grants Void Shroud
\n
\n Can only be executed while under the effect of Lemure Shroud.\n\nRecast timer cannot be affected by status effects or gear attributes.\n\nLemure Shroud Cost: 1\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":24396,"IconHD":"/i/003000/003624_hr1.png","Name":"Cross Reaping","PreservesCombo":1,"PrimaryCostType":66,"PrimaryCostValue":1,"Range":"-1","Recast100ms":25,"SecondaryCostType":112,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":3,"Name":"Weaponskill","Name_de":"Waffenfertigkeit","Name_en":"Weaponskill","Name_fr":"Technique d'arme","Name_ja":"ウェポンスキル"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":80,"CooldownGroup":58,"Description":"Delivers an attack with a potency of 200 to all enemies in a cone before you. Additional Effect: Grants Void Shroud
\n
\n Can only be executed while under the effect of Enshrouded.\n\nRecast timer cannot be affected by status effects or gear attributes.\n\nLemure Shroud Cost: 1\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":8,"ID":24397,"IconHD":"/i/003000/003625_hr1.png","Name":"Grim Reaping","PreservesCombo":1,"PrimaryCostType":66,"PrimaryCostValue":1,"Range":8,"Recast100ms":25,"SecondaryCostType":112,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":13,"CastType":2,"ClassJobLevel":90,"CooldownGroup":58,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 1,000 for the first enemy, and 60% less for all remaining enemies.\n\nEnshrouded effect expires upon execution.\n\nRequires at least one stack of Lemure Shroud to execute.","DescriptionJSON":null,"EffectRange":5,"ID":24398,"IconHD":"/i/003000/003626_hr1.png","Name":"Communio","PreservesCombo":1,"PrimaryCostType":82,"PrimaryCostValue":1,"Range":25,"Recast100ms":25,"SecondaryCostType":112,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":86,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 200.\n\nVoid Shroud Cost: 2\n\nShares a recast timer with Lemure's Scythe.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":24399,"IconHD":"/i/003000/003627_hr1.png","Name":"Lemure's Slice","PreservesCombo":1,"PrimaryCostType":67,"PrimaryCostValue":2,"Range":"-1","Recast100ms":10,"SecondaryCostType":112,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":86,"CooldownGroup":1,"Description":"Delivers an attack with a potency of 100 to all enemies in a cone before you.\n\nVoid Shroud Cost: 2\n\nShares a recast timer with Lemure's Slice.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":8,"ID":24400,"IconHD":"/i/003000/003628_hr1.png","Name":"Lemure's Scythe","PreservesCombo":1,"PrimaryCostType":67,"PrimaryCostValue":2,"Range":8,"Recast100ms":10,"SecondaryCostType":112,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":50,"Cast100ms":0,"CastType":1,"ClassJobLevel":20,"CooldownGroup":4,"Description":"Quickly dash 15 yalms forward.\n\nAdditional Effect: Allows next Harpe to be cast immediately\n\nDuration: 20s Additional Effect: Leaves behind a Hellsgate at point of origin, and grants Threshold to self
\n
\nDuration: 10s
\n
\n Cannot be executed while bound.\n\nShares a recast timer with Hell's Egress.","DescriptionJSON":null,"EffectRange":0,"ID":24401,"IconHD":"/i/003000/003629_hr1.png","Name":"Hell's Ingress","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":4,"Cast100ms":0,"CastType":1,"ClassJobLevel":20,"CooldownGroup":4,"Description":"Quickly dash 15 yalms backwards.\n\nAdditional Effect: Allows next Harpe to be cast immediately\n\nDuration: 20s Additional Effect: Leaves behind a Hellsgate at point of origin, and grants Threshold to self
\n
\nDuration: 10s
\n
\n Cannot be executed while bound.\n\nShares a recast timer with Hell's Ingress.","DescriptionJSON":null,"EffectRange":0,"ID":24402,"IconHD":"/i/003000/003630_hr1.png","Name":"Hell's Egress","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":7,"ClassJobLevel":74,"CooldownGroup":2,"Description":"Move instantly to the Hellsgate left behind by you.\n\nCan only be executed while under the effect of Threshold.\n\nCannot be executed while bound.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":0,"ID":24403,"IconHD":"/i/003000/003631_hr1.png","Name":"Regress","PreservesCombo":1,"PrimaryCostType":10,"PrimaryCostValue":2595,"Range":30,"Recast100ms":100,"SecondaryCostType":114,"SecondaryCostValue":0,"TargetArea":1},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":6,"Description":"Grants Crest of Time Borrowed to self, creating a barrier that nullifies damage totaling up to 10% of maximum HP.\n\nDuration: 5s
\nGrants Crest of Time Returned to self and nearby party members within a radius of 15 yalms when barrier is completely absorbed.
\n
\nCrest of Time Returned Effect: Gradually restores HP
\n
\nCure Potency: 50
\n
\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":24404,"IconHD":"/i/003000/003632_hr1.png","Name":"Arcane Crest","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":72,"CooldownGroup":15,"Description":"Increases damage dealt by self and nearby party members by 3%.\n\nDuration: 20s
\nAdditional Effect: Grants Circle of Sacrifice to self and nearby party members
\n
\nDuration: 5s
\n
\nAdditional Effect: Grants Bloodsown Circle to self
\n
\nDuration: 6s
\n
\nCircle of Sacrifice Effect: When you or party members under this effect successfully land a weaponskill or cast a spell, the reaper who applied it may be granted a stack of Immortal Sacrifice, up to a maximum of 8
\n
\nDuration: 30s
\n
\nBloodsown Circle Effect: Allows you to accumulate stacks of Immortal Sacrifice from party members under the effect of your Circle of Sacrifice","DescriptionJSON":null,"EffectRange":15,"ID":24405,"IconHD":"/i/003000/003633_hr1.png","Name":"Arcane Circle","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":3,"ClassJobLevel":90,"CooldownGroup":3,"Description":"Delivers a critical hit to all enemies in a cone before you with a potency of 800 for the first enemy, and 75% less for all remaining enemies.\n\nTriggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.\n\n\n\n※This action cannot be assigned to a hotbar.","DescriptionJSON":null,"EffectRange":8,"ID":25782,"IconHD":"/i/003000/003188_hr1.png","Name":"Kaeshi: Namikiri","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":8,"Recast100ms":10,"SecondaryCostType":14,"SecondaryCostValue":4,"TargetArea":0}],"40":[{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":1,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 300 .\n\nAdditional Effect: Restores HP to targets under the effect of Kardion granted by you\n\nCure Potency: 170","DescriptionJSON":null,"EffectRange":0,"ID":24283,"IconHD":"/i/003000/003651_hr1.png","Name":"Dosis","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":3,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":374,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":2,"CooldownGroup":58,"Description":"Restores target's HP.\n\nCure Potency: 450","DescriptionJSON":null,"EffectRange":0,"ID":24284,"IconHD":"/i/003000/003652_hr1.png","Name":"Diagnosis","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":30,"Recast100ms":25,"SecondaryCostType":46,"SecondaryCostValue":2606,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":4,"CooldownGroup":2,"Description":"Grants self the effect of Kardia and a selected party member or self the effect of Kardion, restoring HP after casting certain magic attacks.","DescriptionJSON":null,"EffectRange":0,"ID":24285,"IconHD":"/i/003000/003653_hr1.png","Name":"Kardia","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":50,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":20,"CastType":2,"ClassJobLevel":10,"CooldownGroup":58,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 300","DescriptionJSON":null,"EffectRange":15,"ID":24286,"IconHD":"/i/003000/003654_hr1.png","Name":"Prognosis","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":8,"Range":0,"Recast100ms":25,"SecondaryCostType":46,"SecondaryCostValue":2606,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":80,"CastType":1,"ClassJobLevel":12,"CooldownGroup":58,"Description":"Resurrects target to a weakened state.","DescriptionJSON":null,"EffectRange":0,"ID":24287,"IconHD":"/i/003000/003655_hr1.png","Name":"Egeiro","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":24,"Range":30,"Recast100ms":25,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":20,"CooldownGroup":11,"Description":"Gradually restores own HP and the HP of all nearby party members.\n\nCure Potency: 100\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":15,"ID":24288,"IconHD":"/i/003000/003656_hr1.png","Name":"Physis","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":63,"SecondaryCostValue":510,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":26,"CooldownGroup":19,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 400 for the first enemy, and 30% less for all remaining enemies.\n\nAdditional Effect: Restores HP to targets under the effect of Kardion granted by you\n\nCure Potency: 170 Maximum Charges: 2\n\nThis action does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":5,"ID":24289,"IconHD":"/i/003000/003657_hr1.png","Name":"Phlegma","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":6,"Recast100ms":450,"SecondaryCostType":63,"SecondaryCostValue":374,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":30,"CooldownGroup":58,"Description":"Augments certain offensive and healing magic actions. Dosis III is upgraded to Eukrasian Dosis III .\n\nDiagnosis is upgraded to Eukrasian Diagnosis.\n\nPrognosis is upgraded to Eukrasian Prognosis.\n\nRecast timer cannot be affected by status effects or gear attributes.","DescriptionJSON":null,"EffectRange":0,"ID":24290,"IconHD":"/i/003000/003658_hr1.png","Name":"Eukrasia","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":25,"SecondaryCostType":46,"SecondaryCostValue":2606,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":35,"CooldownGroup":15,"Description":"Grants 4 stacks of Soteria, each stack increasing the cure potency of Kardion effects granted by you by 70%.\n\nDuration: 15s","DescriptionJSON":null,"EffectRange":0,"ID":24294,"IconHD":"/i/003000/003662_hr1.png","Name":"Soteria","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":1,"Cast100ms":0,"CastType":1,"ClassJobLevel":40,"CooldownGroup":7,"Description":"Rush to a targeted enemy's or party member's location.\n\nUnable to cast if bound.","DescriptionJSON":null,"EffectRange":0,"ID":24295,"IconHD":"/i/003000/003663_hr1.png","Name":"Icarus","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":25,"Recast100ms":450,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":45,"CooldownGroup":1,"Description":"Restores target's HP.\n\nCure Potency: 600\n\nAdditional Effect: Restores 7% of maximum MP\n\nAddersgall Cost: 1","DescriptionJSON":null,"EffectRange":0,"ID":24296,"IconHD":"/i/003000/003664_hr1.png","Name":"Druochole","PreservesCombo":1,"PrimaryCostType":68,"PrimaryCostValue":1,"Range":30,"Recast100ms":10,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":46,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 160 to all nearby enemies.\n\nAdditional Effect: Restores HP to targets under the effect of Kardion granted by you\n\nCure Potency: 170","DescriptionJSON":null,"EffectRange":5,"ID":24297,"IconHD":"/i/003000/003665_hr1.png","Name":"Dyskrasia","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":0,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":376,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":50,"CooldownGroup":4,"Description":"Reduces damage taken by self and nearby party members by 10%.\n\nDuration: 15s\n\nEffect cannot be stacked with Taurochole. Additional Effect: Regen
\n
\nCure Potency: 100
\n
\nDuration: 15s
\n
\n Additional Effect: Restores 7% of maximum MP\n\nAddersgall Cost: 1","DescriptionJSON":null,"EffectRange":15,"ID":24298,"IconHD":"/i/003000/003666_hr1.png","Name":"Kerachole","PreservesCombo":1,"PrimaryCostType":68,"PrimaryCostValue":1,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":52,"CooldownGroup":5,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 400\n\nAdditional Effect: Restores 7% of maximum MP\n\nAddersgall Cost: 1","DescriptionJSON":null,"EffectRange":15,"ID":24299,"IconHD":"/i/003000/003667_hr1.png","Name":"Ixochole","PreservesCombo":1,"PrimaryCostType":68,"PrimaryCostValue":1,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":56,"CooldownGroup":20,"Description":"Increases healing magic potency of your next healing spell by 50%.\n\nDuration: 30s","DescriptionJSON":null,"EffectRange":0,"ID":24300,"IconHD":"/i/003000/003668_hr1.png","Name":"Zoe","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":58,"CooldownGroup":3,"Description":"Restores own HP and the HP of nearby party members by removing Eukrasian Diagnosis and Eukrasian Prognosis effects granted by you.\n\nEukrasian Diagnosis Cure Potency: 450\n\nEukrasian Prognosis Cure Potency: 350\n\nTargets not under the effect of Eukrasian Diagnosis or Eukrasian Prognosis will not be healed.","DescriptionJSON":null,"EffectRange":15,"ID":24301,"IconHD":"/i/003000/003669_hr1.png","Name":"Pepsis","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":300,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":60,"CooldownGroup":24,"Description":"Gradually restores own HP and the HP of all nearby party members.\n\nCure Potency: 130\n\nDuration: 15s\n\nAdditional Effect: Increases HP recovered by healing actions by 10%\n\nDuration: 10s","DescriptionJSON":null,"EffectRange":15,"ID":24302,"IconHD":"/i/003000/003670_hr1.png","Name":"Physis II","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":62,"CooldownGroup":8,"Description":"Restores own or target party member's HP.\n\nCure Potency: 700\n\nAdditional Effect: Reduces target's damage taken by 10%\n\nDuration: 15s\n\nEffect cannot be stacked with Kerachole.\n\nAdditional Effect: Restores 7% of maximum MP\n\nAddersgall Cost: 1","DescriptionJSON":null,"EffectRange":0,"ID":24303,"IconHD":"/i/003000/003671_hr1.png","Name":"Taurochole","PreservesCombo":1,"PrimaryCostType":68,"PrimaryCostValue":1,"Range":30,"Recast100ms":450,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":66,"CooldownGroup":58,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 300 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Restores HP to targets under the effect of Kardion granted by you\n\nCure Potency: 170 Addersting Cost: 1","DescriptionJSON":null,"EffectRange":5,"ID":24304,"IconHD":"/i/003000/003672_hr1.png","Name":"Toxikon","PreservesCombo":0,"PrimaryCostType":69,"PrimaryCostValue":1,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":376,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":70,"CooldownGroup":21,"Description":"Erects a magicked barrier around self or target party member that absorbs damage equivalent to a heal of 300 potency.\n\nAdditional Effect: Grants 5 stacks of Haimatinon\n\nDuration: 15s\n\nWhen the barrier is completely absorbed, a stack of Haimatinon is consumed and a new barrier is applied.\n\nWhen the effect duration expires, a healing effect is then applied.\n\nCure Potency: 150 per remaining stack of Haimatinon","DescriptionJSON":null,"EffectRange":0,"ID":24305,"IconHD":"/i/003000/003673_hr1.png","Name":"Haima","PreservesCombo":0,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":72,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 320.\n\nAdditional Effect: Restores HP to targets under the effect of Kardion granted by you\n\nCure Potency: 170","DescriptionJSON":null,"EffectRange":0,"ID":24306,"IconHD":"/i/003000/003674_hr1.png","Name":"Dosis II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":63,"SecondaryCostValue":376,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":72,"CooldownGroup":17,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 490 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Restores HP to targets under the effect of Kardion granted by you\n\nCure Potency: 170 Maximum Charges: 2\n\nThis action does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":5,"ID":24307,"IconHD":"/i/003000/003675_hr1.png","Name":"Phlegma II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":6,"Recast100ms":450,"SecondaryCostType":63,"SecondaryCostValue":376,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":74,"CooldownGroup":16,"Description":"Grants 1 stack of Addersgall.","DescriptionJSON":null,"EffectRange":0,"ID":24309,"IconHD":"/i/003000/003677_hr1.png","Name":"Rhizomata","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":900,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":76,"CooldownGroup":12,"Description":"Restores own HP and the HP of all nearby party members.\n\nCure Potency: 300\n\nAdditional Effect: Reduces damage taken by self and nearby party members by 10%\n\nDuration: 20s","DescriptionJSON":null,"EffectRange":15,"ID":24310,"IconHD":"/i/003000/003678_hr1.png","Name":"Holos","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":80,"CooldownGroup":22,"Description":"Erects a magicked barrier around self and all party members near you that absorbs damage equivalent to a heal of 200 potency.\n\nAdditional Effect: Grants 5 stacks of Panhaimatinon\n\nDuration: 15s\n\nWhen the barrier is completely absorbed, a stack of Panhaimatinon is consumed and a new barrier is applied.\n\nWhen the effect duration expires, a healing effect is then applied.\n\nCure Potency: 100 per remaining stack of Panhaimatinon","DescriptionJSON":null,"EffectRange":15,"ID":24311,"IconHD":"/i/003000/003679_hr1.png","Name":"Panhaima","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":0,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":1,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 330.\n\nAdditional Effect: Restores HP to targets under the effect of Kardion granted by you\n\nCure Potency: 170","DescriptionJSON":null,"EffectRange":0,"ID":24312,"IconHD":"/i/003000/003680_hr1.png","Name":"Dosis III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":376,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":82,"CooldownGroup":18,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 510 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Restores HP to targets under the effect of Kardion granted by you\n\nCure Potency: 170 Maximum Charges: 2\n\nThis action does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":5,"ID":24313,"IconHD":"/i/003000/003681_hr1.png","Name":"Phlegma III","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":6,"Recast100ms":450,"SecondaryCostType":62,"SecondaryCostValue":376,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Deals unaspected damage with a potency of 170 to all nearby enemies.\n\nAdditional Effect: Restores HP to targets under the effect of Kardion granted by you\n\nCure Potency: 170","DescriptionJSON":null,"EffectRange":5,"ID":24315,"IconHD":"/i/003000/003683_hr1.png","Name":"Dyskrasia II","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":4,"Range":0,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":376,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":2,"ClassJobLevel":82,"CooldownGroup":58,"Description":"Deals unaspected damage to target and all enemies nearby it with a potency of 330 for the first enemy, and 50% less for all remaining enemies.\n\nAdditional Effect: Restores HP to targets under the effect of Kardion granted by you\n\nCure Potency: 170 Addersting Cost: 1","DescriptionJSON":null,"EffectRange":5,"ID":24316,"IconHD":"/i/003000/003684_hr1.png","Name":"Toxikon II","PreservesCombo":0,"PrimaryCostType":69,"PrimaryCostValue":1,"Range":25,"Recast100ms":25,"SecondaryCostType":62,"SecondaryCostValue":376,"TargetArea":0},{"ActionCategory":{"ID":4,"Name":"Ability","Name_de":"Talent","Name_en":"Ability","Name_fr":"Aptitude","Name_ja":"アビリティ"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":0,"CastType":1,"ClassJobLevel":86,"CooldownGroup":13,"Description":"Increases HP recovery via healing actions for a party member or self by 20%.\n\nDuration: 10s","DescriptionJSON":null,"EffectRange":0,"ID":24317,"IconHD":"/i/003000/003685_hr1.png","Name":"Krasis","PreservesCombo":1,"PrimaryCostType":0,"PrimaryCostValue":0,"Range":30,"Recast100ms":600,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0},{"ActionCategory":{"ID":2,"Name":"Spell","Name_de":"Zauber","Name_en":"Spell","Name_fr":"Sort","Name_ja":"魔法"},"ActionComboTargetID":0,"BehaviourType":0,"Cast100ms":15,"CastType":4,"ClassJobLevel":90,"CooldownGroup":23,"Description":"Deals unaspected damage to all enemies in a straight line before you with a potency of 330 for the first enemy, and 40% less for all remaining enemies.\n\nAdditional Effect: Restores own HP and the HP of all party members within a radius of 20 yalms\n\nCure Potency: 600\n\nAdditional Effect: Restores HP to targets under the effect of Kardion granted by you\n\nCure Potency: 170 This action does not share a recast timer with any other actions.","DescriptionJSON":null,"EffectRange":25,"ID":24318,"IconHD":"/i/003000/003686_hr1.png","Name":"Pneuma","PreservesCombo":0,"PrimaryCostType":3,"PrimaryCostValue":7,"Range":25,"Recast100ms":1200,"SecondaryCostType":0,"SecondaryCostValue":0,"TargetArea":0}]} \ No newline at end of file diff --git a/src/assets/classjobs.json b/src/assets/classjobs.json index 42f4870..2715579 100644 --- a/src/assets/classjobs.json +++ b/src/assets/classjobs.json @@ -1 +1 @@ -[{"Abbreviation":"PGL","BattleClassIndex":1,"ClassJobParentTargetID":2,"GameContentLinks":{"Action":{"ClassJob":[53,54,56,60,61,62,65,66,69,73]},"ActionIndirection":null,"Trait":{"ClassJob":[10,11]}},"ID":2,"Icon":"/cj/1/pugilist.png","Name_de":"Faustkämpfer","Name_en":"pugilist","Name_fr":"pugiliste","Name_ja":"格闘士","Url":"/ClassJob/2"},{"Abbreviation":"MRD","BattleClassIndex":2,"ClassJobParentTargetID":3,"GameContentLinks":{"Action":{"ClassJob":[31,37,38,40,41,42,43,44,45,46,48]},"ActionIndirection":null,"Trait":{"ClassJob":[318]}},"ID":3,"Icon":"/cj/1/marauder.png","Name_de":"Marodeur","Name_en":"marauder","Name_fr":"maraudeur","Name_ja":"斧術士","Url":"/ClassJob/3"},{"Abbreviation":"LNC","BattleClassIndex":3,"ClassJobParentTargetID":4,"GameContentLinks":{"Action":{"ClassJob":[75,78,83,84,85,87,88,90]},"ActionIndirection":null,"Trait":null},"ID":4,"Icon":"/cj/1/lancer.png","Name_de":"Pikenier","Name_en":"lancer","Name_fr":"maître d'hast","Name_ja":"槍術士","Url":"/ClassJob/4"},{"Abbreviation":"ARC","BattleClassIndex":4,"ClassJobParentTargetID":5,"GameContentLinks":{"Action":{"ClassJob":[97,98,100,101,106,107,110,112,113,18190]},"ActionIndirection":null,"Trait":{"ClassJob":[17,18,20]}},"ID":5,"Icon":"/cj/1/archer.png","Name_de":"Waldläufer","Name_en":"archer","Name_fr":"archer","Name_ja":"弓術士","Url":"/ClassJob/5"},{"Abbreviation":"CNJ","BattleClassIndex":5,"ClassJobParentTargetID":6,"GameContentLinks":{"Action":{"ClassJob":[119,120,121,124,125,127,132,133,134,135]},"ActionIndirection":null,"Trait":{"ClassJob":[23,25,26,179,180]}},"ID":6,"Icon":"/cj/1/conjurer.png","Name_de":"Druide","Name_en":"conjurer","Name_fr":"élémentaliste","Name_ja":"幻術士","Url":"/ClassJob/6"},{"Abbreviation":"THM","BattleClassIndex":6,"ClassJobParentTargetID":7,"GameContentLinks":{"Action":{"ClassJob":[141,142,144,145,146,147,149,152,155,156,157,7447]},"ActionIndirection":null,"Trait":{"ClassJob":[29,31,32,33]}},"ID":7,"Icon":"/cj/1/thaumaturge.png","Name_de":"Thaumaturg","Name_en":"thaumaturge","Name_fr":"occultiste","Name_ja":"呪術士","Url":"/ClassJob/7"},{"Abbreviation":"CRP","BattleClassIndex":"-1","ClassJobParentTargetID":8,"GameContentLinks":{"Action":{"ClassJob":[244,252,260,276,4560,4574,4597,4607,4615,4623,4631,4639,19004,19012,19297]},"ActionIndirection":null,"Trait":{"ClassJob":[138,146,339,347,356]}},"ID":8,"Icon":"/cj/1/carpenter.png","Name_de":"Zimmerer","Name_en":"carpenter","Name_fr":"menuisier","Name_ja":"木工師","Url":"/ClassJob/8"},{"Abbreviation":"BSM","BattleClassIndex":"-1","ClassJobParentTargetID":9,"GameContentLinks":{"Action":{"ClassJob":[245,253,261,277,283,4561,4575,4598,4608,4616,4624,4632,4640,19005,19013,19298]},"ActionIndirection":null,"Trait":{"ClassJob":[139,147,340,348,357]}},"ID":9,"Icon":"/cj/1/blacksmith.png","Name_de":"Grobschmied","Name_en":"blacksmith","Name_fr":"forgeron","Name_ja":"鍛冶師","Url":"/ClassJob/9"},{"Abbreviation":"ARM","BattleClassIndex":"-1","ClassJobParentTargetID":10,"GameContentLinks":{"Action":{"ClassJob":[246,254,262,4562,4576,4599,4609,4617,4625,4633,4641,19006,19014,19299]},"ActionIndirection":null,"Trait":{"ClassJob":[140,148,341,349,358]}},"ID":10,"Icon":"/cj/1/armorer.png","Name_de":"Plattner","Name_en":"armorer","Name_fr":"armurier","Name_ja":"甲冑師","Url":"/ClassJob/10"},{"Abbreviation":"GSM","BattleClassIndex":"-1","ClassJobParentTargetID":11,"GameContentLinks":{"Action":{"ClassJob":[247,255,263,278,284,4563,4577,4600,4610,4618,4626,4634,4642,19007,19015,19300]},"ActionIndirection":null,"Trait":{"ClassJob":[141,149,342,350,359]}},"ID":11,"Icon":"/cj/1/goldsmith.png","Name_de":"Goldschmied","Name_en":"goldsmith","Name_fr":"orfèvre","Name_ja":"彫金師","Url":"/ClassJob/11"},{"Abbreviation":"LTW","BattleClassIndex":"-1","ClassJobParentTargetID":12,"GameContentLinks":{"Action":{"ClassJob":[249,257,265,279,285,4565,4578,4602,4612,4620,4627,4635,4643,19008,19016,19301]},"ActionIndirection":null,"Trait":{"ClassJob":[142,150,343,351,360]}},"ID":12,"Icon":"/cj/1/leatherworker.png","Name_de":"Gerber","Name_en":"leatherworker","Name_fr":"tanneur","Name_ja":"革細工師","Url":"/ClassJob/12"},{"Abbreviation":"WVR","BattleClassIndex":"-1","ClassJobParentTargetID":13,"GameContentLinks":{"Action":{"ClassJob":[248,256,264,4564,4579,4601,4611,4619,4628,4636,4644,19009,19017,19302]},"ActionIndirection":null,"Trait":{"ClassJob":[143,151,344,352,361]}},"ID":13,"Icon":"/cj/1/weaver.png","Name_de":"Weber","Name_en":"weaver","Name_fr":"couturier","Name_ja":"裁縫師","Url":"/ClassJob/13"},{"Abbreviation":"ALC","BattleClassIndex":"-1","ClassJobParentTargetID":14,"GameContentLinks":{"Action":{"ClassJob":[250,258,266,286,4566,4580,4603,4613,4621,4629,4637,19002,19010,19018,19303]},"ActionIndirection":null,"Trait":{"ClassJob":[144,152,345,353,362]}},"ID":14,"Icon":"/cj/1/alchemist.png","Name_de":"Alchemist","Name_en":"alchemist","Name_fr":"alchimiste","Name_ja":"錬金術師","Url":"/ClassJob/14"},{"Abbreviation":"CUL","BattleClassIndex":"-1","ClassJobParentTargetID":15,"GameContentLinks":{"Action":{"ClassJob":[251,259,267,287,4567,4581,4604,4614,4622,4630,4638,19003,19011,19019,19304]},"ActionIndirection":null,"Trait":{"ClassJob":[145,153,346,354,363]}},"ID":15,"Icon":"/cj/1/culinarian.png","Name_de":"Gourmet","Name_en":"culinarian","Name_fr":"cuisinier","Name_ja":"調理師","Url":"/ClassJob/15"},{"Abbreviation":"MIN","BattleClassIndex":"-1","ClassJobParentTargetID":16,"GameContentLinks":{"Action":{"ClassJob":[219,227,228,229,230,231,232,233,234,235,237,238,239,241,242,243,270,272,274,291,293,295,301,4072,4073,4074,4075,4076,4077,4078,4079,4081,4082,4083,4084,4587,4589,4593,4605,280,303,22182,22183,22184,22185]},"ActionIndirection":null,"Trait":{"ClassJob":[38,39,40,41,48,49,50,51,52,53,94,95,96,97,98,126,127,128,190,192,225,226,227,236,325,328,331,333,334,335]}},"ID":16,"Icon":"/cj/1/miner.png","Name_de":"Minenarbeiter","Name_en":"miner","Name_fr":"mineur","Name_ja":"採掘師","Url":"/ClassJob/16"},{"Abbreviation":"BTN","BattleClassIndex":"-1","ClassJobParentTargetID":17,"GameContentLinks":{"Action":{"ClassJob":[210,211,212,213,214,215,216,217,218,220,221,222,224,225,226,236,271,273,275,290,292,294,302,4086,4087,4088,4089,4090,4091,4092,4093,4095,4096,4097,4098,4588,4590,4594,4606,282,304,22186,22187,22188,22189]},"ActionIndirection":null,"Trait":{"ClassJob":[34,35,36,37,42,43,44,45,46,47,99,100,101,102,103,129,130,131,191,193,228,229,230,237,326,329,332,336,337,338]}},"ID":17,"Icon":"/cj/1/botanist.png","Name_de":"Gärtner","Name_en":"botanist","Name_fr":"botaniste","Name_ja":"園芸師","Url":"/ClassJob/17"},{"Abbreviation":"FSH","BattleClassIndex":"-1","ClassJobParentTargetID":18,"GameContentLinks":{"Action":{"ClassJob":[268,269,288,289,296,297,298,299,300,2135,4100,4101,4102,4103,4104,4105,4106,4179,4591,4595,4596,7632,7634,7903,7904,7905,7906,7907,7908,7909,7910,7911,305,19264]},"ActionIndirection":null,"Trait":{"ClassJob":[54,55,56,57,58,59,60,61,62,104,105,106,107,108,109,110,111,132,133,134,135,136,137,154,155,194,231,232,233,234,235,238,327,330]}},"ID":18,"Icon":"/cj/1/fisher.png","Name_de":"Fischer","Name_en":"fisher","Name_fr":"pêcheur","Name_ja":"漁師","Url":"/ClassJob/18"},{"Abbreviation":"PLD","BattleClassIndex":"-1","ClassJobParentTargetID":1,"GameContentLinks":{"Action":{"ClassJob":[27,29,30,3538,3539,3540,3541,3542,7382,7383,7384,7385,8746,8749,8750,8751,8752,8754,8755,8756,16457,16458,16459,16460,16461,17691,17692,17693,17694,18899,18900,18901,18902,19085,19086]},"ActionIndirection":null,"Trait":{"ClassJob":[207,209,246,260,261,262,263,264]}},"ID":19,"Icon":"/cj/1/paladin.png","Name_de":"Paladin","Name_en":"paladin","Name_fr":"paladin","Name_ja":"ナイト","Url":"/ClassJob/19"},{"Abbreviation":"MNK","BattleClassIndex":"-1","ClassJobParentTargetID":2,"GameContentLinks":{"Action":{"ClassJob":[63,70,71,74,3543,3545,3546,4262,7394,7395,7396,8780,8781,8782,8783,8784,8785,8787,8789,16473,16474,16475,16476,17719,17720,17721,17722,17723,17724,17725,17726,8788,8790,9639,17670,18913,18914,18915]},"ActionIndirection":{"ClassJob":[8]},"Trait":{"ClassJob":[160,161,245,273,274]}},"ID":20,"Icon":"/cj/1/monk.png","Name_de":"Mönch","Name_en":"monk","Name_fr":"moine","Name_ja":"モンク","Url":"/ClassJob/20"},{"Abbreviation":"WAR","BattleClassIndex":"-1","ClassJobParentTargetID":3,"GameContentLinks":{"Action":{"ClassJob":[49,51,52,3549,3550,3551,3552,7386,7387,7388,7389,8758,8761,8762,8763,8764,8765,8767,8768,16462,16464,17695,17696,17697,17698,17889,17699,18904,18905]},"ActionIndirection":{"ClassJob":[69,70]},"Trait":{"ClassJob":[157,218,249,265,266,267,268,269]}},"ID":21,"Icon":"/cj/1/warrior.png","Name_de":"Krieger","Name_en":"warrior","Name_fr":"guerrier","Name_ja":"戦士","Url":"/ClassJob/21"},{"Abbreviation":"DRG","BattleClassIndex":"-1","ClassJobParentTargetID":4,"GameContentLinks":{"Action":{"ClassJob":[86,92,94,95,96,3553,3554,3555,3556,3557,7397,7398,7399,8791,8792,8793,8794,8795,8796,8797,8798,8799,8802,8803,8804,8805,8806,9640,16477,16478,16480,17728,17729,10032,17730,18916,18917,18918,18919,18920]},"ActionIndirection":{"ClassJob":[25,87]},"Trait":{"ClassJob":[162,163,247,275,276]}},"ID":22,"Icon":"/cj/1/dragoon.png","Name_de":"Dragoon","Name_en":"dragoon","Name_fr":"chevalier dragon","Name_ja":"竜騎士","Url":"/ClassJob/22"},{"Abbreviation":"BRD","BattleClassIndex":"-1","ClassJobParentTargetID":5,"GameContentLinks":{"Action":{"ClassJob":[114,116,117,118,3558,3559,3560,3561,3562,7404,7405,7406,7407,7408,7409,8836,8837,8838,8839,8841,8842,8843,8844,9625,10023,16494,16495,16496,17745,17747,18930,18931,19071]},"ActionIndirection":null,"Trait":{"ClassJob":[168,169,282,283,284,285,286,287]}},"ID":23,"Icon":"/cj/1/bard.png","Name_de":"Barde","Name_en":"bard","Name_fr":"barde","Name_ja":"吟遊詩人","Url":"/ClassJob/23"},{"Abbreviation":"WHM","BattleClassIndex":"-1","ClassJobParentTargetID":6,"GameContentLinks":{"Action":{"ClassJob":[131,136,137,139,140,3568,3569,3570,3571,7430,7431,7432,7433,8895,8896,8900,9621,16531,16532,16533,16534,16535,16536,17789,17790,17791,17793,17794,9620,13975,18945,18946]},"ActionIndirection":null,"Trait":{"ClassJob":[181,182,196,307,308,309,310]}},"ID":24,"Icon":"/cj/1/whitemage.png","Name_de":"Weißmagier","Name_en":"white mage","Name_fr":"mage blanc","Name_ja":"白魔道士","Url":"/ClassJob/24"},{"Abbreviation":"BLM","BattleClassIndex":"-1","ClassJobParentTargetID":7,"GameContentLinks":{"Action":{"ClassJob":[153,154,158,159,162,3573,3574,3575,3576,3577,7419,7420,7421,7422,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8869,9637,16505,16506,16507,17774,17775,18935,18936]},"ActionIndirection":null,"Trait":{"ClassJob":[171,172,173,174,295,296,297,321,322]}},"ID":25,"Icon":"/cj/1/blackmage.png","Name_de":"Schwarzmagier","Name_en":"black mage","Name_fr":"mage noir","Name_ja":"黒魔道士","Url":"/ClassJob/25"},{"Abbreviation":"ACN","BattleClassIndex":7,"ClassJobParentTargetID":26,"GameContentLinks":{"Action":{"ClassJob":[163,164,165,168,170,172,173,174,178,181,16230,16508,16509,16512]},"ActionIndirection":null,"Trait":{"ClassJob":[66,69,175]}},"ID":26,"Icon":"/cj/1/arcanist.png","Name_de":"Hermetiker","Name_en":"arcanist","Name_fr":"arcaniste","Name_ja":"巴術士","Url":"/ClassJob/26"},{"Abbreviation":"SMN","BattleClassIndex":"-1","ClassJobParentTargetID":26,"GameContentLinks":{"Action":{"ClassJob":[180,184,3578,3579,3580,3581,3582,7423,7424,7425,7427,7429,8872,8873,8874,8877,8878,8880,9014,9432,16510,16511,17777,17778,17779,17780,17781,17782,9013,18937,18938,18939,18953]},"ActionIndirection":{"ClassJob":[17,19,20,79,80,81,83,84,85,86]},"Trait":{"ClassJob":[176,177,178,213,217,298,299,300,301,302,355]}},"ID":27,"Icon":"/cj/1/summoner.png","Name_de":"Beschwörer","Name_en":"summoner","Name_fr":"invocateur","Name_ja":"召喚士","Url":"/ClassJob/27"},{"Abbreviation":"SCH","BattleClassIndex":"-1","ClassJobParentTargetID":26,"GameContentLinks":{"Action":{"ClassJob":[166,167,185,186,188,189,190,3583,3584,3585,3586,3587,7434,7435,7436,7437,8904,8905,8909,9622,16537,16538,16539,16540,16541,16542,16543,16545,16546,17215,17216,17795,17796,17797,17798,17864,17865,17869,17870,17990,18940,18947,18948,18949]},"ActionIndirection":null,"Trait":{"ClassJob":[184,214,311,312,313,324]}},"ID":28,"Icon":"/cj/1/scholar.png","Name_de":"Gelehrter","Name_en":"scholar","Name_fr":"érudit","Name_ja":"学者","Url":"/ClassJob/28"},{"Abbreviation":"ROG","BattleClassIndex":8,"ClassJobParentTargetID":29,"GameContentLinks":{"Action":{"ClassJob":[2240,2241,2242,2245,2247,2248,2254,2255,2257,2258]},"ActionIndirection":null,"Trait":{"ClassJob":[90,93]}},"ID":29,"Icon":"/cj/1/rogue.png","Name_de":"Schurke","Name_en":"rogue","Name_fr":"surineur","Name_ja":"双剣士","Url":"/ClassJob/29"},{"Abbreviation":"NIN","BattleClassIndex":"-1","ClassJobParentTargetID":29,"GameContentLinks":{"Action":{"ClassJob":[2246,2259,2260,2261,2262,2263,2264,3563,3566,7401,7402,7403,8807,8808,8809,8810,8812,8814,8815,8816,8820,9461,16488,16489,16493,17732,17733,17734,17735,17736,17737,17738,17739,8811,17731,18921,18922,18923,18924,18925,18987]},"ActionIndirection":{"ClassJob":[1,2,3,4,5,6,7,61,62]},"Trait":{"ClassJob":[165,166,167,250,279,280]}},"ID":30,"Icon":"/cj/1/ninja.png","Name_de":"Ninja","Name_en":"ninja","Name_fr":"ninja","Name_ja":"忍者","Url":"/ClassJob/30"},{"Abbreviation":"MCH","BattleClassIndex":9,"ClassJobParentTargetID":31,"GameContentLinks":{"Action":{"ClassJob":[2864,2866,2868,2870,2872,2873,2874,2876,2878,2890,7410,7411,7412,7413,7414,7415,7418,8848,8849,8850,8851,8853,8855,16497,16498,16499,16500,16501,16502,16889,17209,17749,17750,17751,17752,17753,17754,18932,18933,18934]},"ActionIndirection":{"ClassJob":[26,65,66,67,68]},"Trait":{"ClassJob":[117,119,288,289,290,291,292,293,294]}},"ID":31,"Icon":"/cj/1/machinist.png","Name_de":"Maschinist","Name_en":"machinist","Name_fr":"machiniste","Name_ja":"機工士","Url":"/ClassJob/31"},{"Abbreviation":"DRK","BattleClassIndex":10,"ClassJobParentTargetID":32,"GameContentLinks":{"Action":{"ClassJob":[3617,3621,3623,3624,3625,3629,3632,3634,3636,3638,3639,3640,3641,3643,7390,7391,7392,7393,8769,8772,8773,8775,8776,8777,8778,8779,16466,16467,16468,16469,16470,16471,16472,17700,17701,17702,18906,18907,18908,18909]},"ActionIndirection":null,"Trait":{"ClassJob":[158,159,271,272,319]}},"ID":32,"Icon":"/cj/1/darkknight.png","Name_de":"Dunkelritter","Name_en":"dark knight","Name_fr":"chevalier noir","Name_ja":"暗黒騎士","Url":"/ClassJob/32"},{"Abbreviation":"AST","BattleClassIndex":11,"ClassJobParentTargetID":33,"GameContentLinks":{"Action":{"ClassJob":[3590,3593,3594,3595,3596,3598,3599,3600,3601,3603,3604,3605,3606,3608,3610,3612,3613,3614,3615,7439,7442,7443,7448,8913,8914,8916,9629,10027,10028,10029,16552,16553,16554,16555,16556,16557,16559,17055,17804,17805,17806,17807,17809,17991,18941,18950,18951]},"ActionIndirection":{"ClassJob":[9,10,11,12,13,14,15,16]},"Trait":{"ClassJob":[122,124,125,186,187,188,189,314,315,316]}},"ID":33,"Icon":"/cj/1/astrologian.png","Name_de":"Astrologe","Name_en":"astrologian","Name_fr":"astromancien","Name_ja":"占星術師","Url":"/ClassJob/33"},{"Abbreviation":"SAM","BattleClassIndex":12,"ClassJobParentTargetID":34,"GameContentLinks":{"Action":{"ClassJob":[7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7501,7502,7855,7857,7867,8821,8822,8823,8824,8825,8826,8828,8829,8830,8831,8833,16481,16482,16483,16487,17740,17741,17742,17743,17744,8827,8832,18926,18927,18929,18988]},"ActionIndirection":{"ClassJob":[21,22,23,71,72,73]},"Trait":{"ClassJob":[208,215,277,278]}},"ID":34,"Icon":"/cj/1/samurai.png","Name_de":"Samurai","Name_en":"samurai","Name_fr":"samouraï","Name_ja":"侍","Url":"/ClassJob/34"},{"Abbreviation":"RDM","BattleClassIndex":13,"ClassJobParentTargetID":35,"GameContentLinks":{"Action":{"ClassJob":[7503,7504,7505,7506,7507,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7523,7524,8882,8883,8884,8885,8887,8888,8889,8890,8891,8892,9433,9434,10025,16524,16525,16526,16527,16529,17786,17787,17788,8886,17718,17727,18944,20106]},"ActionIndirection":{"ClassJob":[27,28,29,30,74,75,76,77]},"Trait":{"ClassJob":[195,200,201,216,303,304,305,306]}},"ID":35,"Icon":"/cj/1/redmage.png","Name_de":"Rotmagier","Name_en":"red mage","Name_fr":"mage rouge","Name_ja":"赤魔道士","Url":"/ClassJob/35"},{"Abbreviation":"BLU","BattleClassIndex":14,"ClassJobParentTargetID":36,"GameContentLinks":{"Action":{"ClassJob":[11383,11384,11385,11386,11387,11388,11389,11390,11391,11392,11393,11394,11395,11396,11397,11398,11399,11400,11401,11402,11403,11404,11405,11406,11407,11408,11409,11410,11411,11412,11413,11414,11415,11416,11417,11418,11419,11420,11421,11422,11423,11424,11425,11426,11427,11428,11429,11430,11431,18295,18296,18297,18298,18299,18300,18301,18302,18303,18304,18305,18306,18307,18308,18309,18310,18311,18312,18313,18314,18315,18316,18317,18318,18319,18320,18321,18322,18323,18324,18325,23264,23265,23266,23267,23269,23270,23271,23272,23273,23275,23276,23277,23278,23279,23280,23281,23282,23283,23284,23285,23286,23287,23288,23290,23416]},"ActionIndirection":null,"Trait":{"ClassJob":[219,220,221,222,223,224]}},"ID":36,"Icon":"/cj/1/bluemage.png","Name_de":"Blaumagier","Name_en":"blue mage","Name_fr":"mage bleu","Name_ja":"青魔道士","Url":"/ClassJob/36"},{"Abbreviation":"GNB","BattleClassIndex":15,"ClassJobParentTargetID":37,"GameContentLinks":{"Action":{"ClassJob":[16137,16138,16139,16140,16141,16142,16143,16144,16145,16146,16147,16148,16149,16150,16151,16152,16153,16154,16155,16159,16160,16161,16162,16163,16164,16165,17703,17704,17705,17706,17707,17708,17709,17710,17711,17712,17713,17714,17716,17717,17890,17891,17715,17748,18910,18911]},"ActionIndirection":{"ClassJob":[33,34,35]},"Trait":{"ClassJob":[257,258,259,320]}},"ID":37,"Icon":"/cj/1/gunbreaker.png","Name_de":"Revolverklinge","Name_en":"gunbreaker","Name_fr":"pistosabreur","Name_ja":"ガンブレイカー","Url":"/ClassJob/37"},{"Abbreviation":"DNC","BattleClassIndex":16,"ClassJobParentTargetID":38,"GameContentLinks":{"Action":{"ClassJob":[15989,15990,15991,15992,15993,15994,15995,15996,15997,15998,16005,16006,16007,16008,16009,16010,16011,16012,16013,16014,16015,17756,17757,17758,17759,17760,17761,17762,17763,17764,17765,17766,17767,17768,17769,17770,17771,17772,17773,17824,17825,17826,17827,17828,17829,18076,18993,18994,18995,18996,18997]},"ActionIndirection":{"ClassJob":[36,37,38,39,40,43]},"Trait":{"ClassJob":[251,252,253,254,255,256]}},"ID":38,"Icon":"/cj/1/dancer.png","Name_de":"Tänzer","Name_en":"dancer","Name_fr":"danseur","Name_ja":"踊り子","Url":"/ClassJob/38"}] \ No newline at end of file +[{"Abbreviation":"PGL","BattleClassIndex":1,"ClassJobParentTargetID":2,"GameContentLinks":{"Action":{"ClassJob":[53,54,56,60,61,62,65,66,69,73,74,3546]},"ActionIndirection":{"ClassJob":[13]},"Trait":{"ClassJob":[10,11,364,365]}},"ID":2,"Icon":"/cj/1/pugilist.png","Name_de":"Faustkämpfer","Name_en":"pugilist","Name_fr":"pugiliste","Name_ja":"格闘士","Url":"/ClassJob/2"},{"Abbreviation":"MRD","BattleClassIndex":2,"ClassJobParentTargetID":3,"GameContentLinks":{"Action":{"ClassJob":[31,37,38,40,41,42,43,44,45,46,48]},"ActionIndirection":null,"Trait":{"ClassJob":[318]}},"ID":3,"Icon":"/cj/1/marauder.png","Name_de":"Marodeur","Name_en":"marauder","Name_fr":"maraudeur","Name_ja":"斧術士","Url":"/ClassJob/3"},{"Abbreviation":"LNC","BattleClassIndex":3,"ClassJobParentTargetID":4,"GameContentLinks":{"Action":{"ClassJob":[75,78,83,84,85,87,88,90]},"ActionIndirection":null,"Trait":null},"ID":4,"Icon":"/cj/1/lancer.png","Name_de":"Pikenier","Name_en":"lancer","Name_fr":"maître d'hast","Name_ja":"槍術士","Url":"/ClassJob/4"},{"Abbreviation":"ARC","BattleClassIndex":4,"ClassJobParentTargetID":5,"GameContentLinks":{"Action":{"ClassJob":[97,98,100,101,106,107,110,112,113,18190]},"ActionIndirection":null,"Trait":{"ClassJob":[17,18,20]}},"ID":5,"Icon":"/cj/1/archer.png","Name_de":"Waldläufer","Name_en":"archer","Name_fr":"archer","Name_ja":"弓術士","Url":"/ClassJob/5"},{"Abbreviation":"CNJ","BattleClassIndex":5,"ClassJobParentTargetID":6,"GameContentLinks":{"Action":{"ClassJob":[119,120,121,124,125,127,132,133,134,135]},"ActionIndirection":null,"Trait":{"ClassJob":[23,25,26,179,180]}},"ID":6,"Icon":"/cj/1/conjurer.png","Name_de":"Druide","Name_en":"conjurer","Name_fr":"élémentaliste","Name_ja":"幻術士","Url":"/ClassJob/6"},{"Abbreviation":"THM","BattleClassIndex":6,"ClassJobParentTargetID":7,"GameContentLinks":{"Action":{"ClassJob":[141,142,144,145,146,147,149,152,155,156,157,7447,25793]},"ActionIndirection":null,"Trait":{"ClassJob":[29,31,32,33,296,458,459]}},"ID":7,"Icon":"/cj/1/thaumaturge.png","Name_de":"Thaumaturg","Name_en":"thaumaturge","Name_fr":"occultiste","Name_ja":"呪術士","Url":"/ClassJob/7"},{"Abbreviation":"CRP","BattleClassIndex":"-1","ClassJobParentTargetID":8,"GameContentLinks":{"Action":{"ClassJob":[244,252,260,276,4560,4574,4597,4607,4615,4623,4631,4639,19004,19012,19297]},"ActionIndirection":null,"Trait":{"ClassJob":[138,146,339,347,356,388,396,404]}},"ID":8,"Icon":"/cj/1/carpenter.png","Name_de":"Zimmerer","Name_en":"carpenter","Name_fr":"menuisier","Name_ja":"木工師","Url":"/ClassJob/8"},{"Abbreviation":"BSM","BattleClassIndex":"-1","ClassJobParentTargetID":9,"GameContentLinks":{"Action":{"ClassJob":[245,253,261,277,283,4561,4575,4598,4608,4616,4624,4632,4640,19005,19013,19298]},"ActionIndirection":null,"Trait":{"ClassJob":[139,147,340,348,357,389,397,405]}},"ID":9,"Icon":"/cj/1/blacksmith.png","Name_de":"Grobschmied","Name_en":"blacksmith","Name_fr":"forgeron","Name_ja":"鍛冶師","Url":"/ClassJob/9"},{"Abbreviation":"ARM","BattleClassIndex":"-1","ClassJobParentTargetID":10,"GameContentLinks":{"Action":{"ClassJob":[246,254,262,4562,4576,4599,4609,4617,4625,4633,4641,19006,19014,19299]},"ActionIndirection":null,"Trait":{"ClassJob":[140,148,341,349,358,390,398,406]}},"ID":10,"Icon":"/cj/1/armorer.png","Name_de":"Plattner","Name_en":"armorer","Name_fr":"armurier","Name_ja":"甲冑師","Url":"/ClassJob/10"},{"Abbreviation":"GSM","BattleClassIndex":"-1","ClassJobParentTargetID":11,"GameContentLinks":{"Action":{"ClassJob":[247,255,263,278,284,4563,4577,4600,4610,4618,4626,4634,4642,19007,19015,19300]},"ActionIndirection":null,"Trait":{"ClassJob":[141,149,342,350,359,391,399,407]}},"ID":11,"Icon":"/cj/1/goldsmith.png","Name_de":"Goldschmied","Name_en":"goldsmith","Name_fr":"orfèvre","Name_ja":"彫金師","Url":"/ClassJob/11"},{"Abbreviation":"LTW","BattleClassIndex":"-1","ClassJobParentTargetID":12,"GameContentLinks":{"Action":{"ClassJob":[249,257,265,279,285,4565,4578,4602,4612,4620,4627,4635,4643,19008,19016,19301]},"ActionIndirection":null,"Trait":{"ClassJob":[142,150,343,351,360,392,400,408]}},"ID":12,"Icon":"/cj/1/leatherworker.png","Name_de":"Gerber","Name_en":"leatherworker","Name_fr":"tanneur","Name_ja":"革細工師","Url":"/ClassJob/12"},{"Abbreviation":"WVR","BattleClassIndex":"-1","ClassJobParentTargetID":13,"GameContentLinks":{"Action":{"ClassJob":[248,256,264,4564,4579,4601,4611,4619,4628,4636,4644,19009,19017,19302]},"ActionIndirection":null,"Trait":{"ClassJob":[143,151,344,352,361,393,401,409]}},"ID":13,"Icon":"/cj/1/weaver.png","Name_de":"Weber","Name_en":"weaver","Name_fr":"couturier","Name_ja":"裁縫師","Url":"/ClassJob/13"},{"Abbreviation":"ALC","BattleClassIndex":"-1","ClassJobParentTargetID":14,"GameContentLinks":{"Action":{"ClassJob":[250,258,266,286,4566,4580,4603,4613,4621,4629,4637,19002,19010,19018,19303]},"ActionIndirection":null,"Trait":{"ClassJob":[144,152,345,353,362,394,402,410]}},"ID":14,"Icon":"/cj/1/alchemist.png","Name_de":"Alchemist","Name_en":"alchemist","Name_fr":"alchimiste","Name_ja":"錬金術師","Url":"/ClassJob/14"},{"Abbreviation":"CUL","BattleClassIndex":"-1","ClassJobParentTargetID":15,"GameContentLinks":{"Action":{"ClassJob":[251,259,267,287,4567,4581,4604,4614,4622,4630,4638,19003,19011,19019,19304]},"ActionIndirection":null,"Trait":{"ClassJob":[145,153,346,354,363,395,403,411]}},"ID":15,"Icon":"/cj/1/culinarian.png","Name_de":"Gourmet","Name_en":"culinarian","Name_fr":"cuisinier","Name_ja":"調理師","Url":"/ClassJob/15"},{"Abbreviation":"MIN","BattleClassIndex":"-1","ClassJobParentTargetID":16,"GameContentLinks":{"Action":{"ClassJob":[219,227,228,229,230,231,232,233,234,235,237,238,239,241,242,243,270,272,274,291,293,295,301,4072,4073,4074,4075,4076,4077,4078,4079,4081,4082,4083,4084,4587,4589,4593,4605,280,303,22182,22183,22184,22185,240,21177,21203,21205,25589,26521]},"ActionIndirection":null,"Trait":{"ClassJob":[38,39,40,41,48,49,50,51,52,53,94,95,96,97,98,126,127,128,190,192,225,226,227,236,325,328,331,333,334,335,239,242]}},"ID":16,"Icon":"/cj/1/miner.png","Name_de":"Minenarbeiter","Name_en":"miner","Name_fr":"mineur","Name_ja":"採掘師","Url":"/ClassJob/16"},{"Abbreviation":"BTN","BattleClassIndex":"-1","ClassJobParentTargetID":17,"GameContentLinks":{"Action":{"ClassJob":[210,211,212,213,214,215,216,217,218,220,221,222,224,225,226,236,271,273,275,290,292,294,302,4086,4087,4088,4089,4090,4091,4092,4093,4095,4096,4097,4098,4588,4590,4594,4606,282,304,22186,22187,22188,22189,815,21178,21204,21206,25590,26522]},"ActionIndirection":null,"Trait":{"ClassJob":[34,35,36,37,42,43,44,45,46,47,99,100,101,102,103,129,130,131,191,193,228,229,230,237,326,329,332,336,337,338,240,243]}},"ID":17,"Icon":"/cj/1/botanist.png","Name_de":"Gärtner","Name_en":"botanist","Name_fr":"botaniste","Name_ja":"園芸師","Url":"/ClassJob/17"},{"Abbreviation":"FSH","BattleClassIndex":"-1","ClassJobParentTargetID":18,"GameContentLinks":{"Action":{"ClassJob":[268,269,288,289,296,297,298,299,300,2135,4100,4101,4102,4103,4104,4105,4106,4179,4591,4595,4596,7632,7634,7903,7904,7905,7906,7907,7908,7909,7910,7911,305,19264,26804,26805,26806,26870,26871,26872,27523]},"ActionIndirection":null,"Trait":{"ClassJob":[54,55,56,57,58,59,60,61,62,104,105,106,107,108,109,110,111,132,133,134,135,136,137,154,155,194,231,232,233,234,235,238,327,330,241,244,501]}},"ID":18,"Icon":"/cj/1/fisher.png","Name_de":"Fischer","Name_en":"fisher","Name_fr":"pêcheur","Name_ja":"漁師","Url":"/ClassJob/18"},{"Abbreviation":"PLD","BattleClassIndex":"-1","ClassJobParentTargetID":1,"GameContentLinks":{"Action":{"ClassJob":[27,29,30,3538,3539,3540,3541,3542,7382,7383,7384,7385,8746,8749,8750,8751,8752,8754,8755,8756,16457,16458,16459,16460,16461,17691,17692,17693,17694,18899,18900,18901,18902,19085,19086,25746,25747,29058,29059,29060,29061,29062,29064,29065,29066,29067,29068,29069,29070,29071,29072,29073]},"ActionIndirection":{"ClassJob":[1,2,3]},"Trait":{"ClassJob":[207,209,246,260,261,262,263,264,412,413,414,415,416,504]}},"ID":19,"Icon":"/cj/1/paladin.png","Name_de":"Paladin","Name_en":"paladin","Name_fr":"paladin","Name_ja":"ナイト","Url":"/ClassJob/19"},{"Abbreviation":"MNK","BattleClassIndex":"-1","ClassJobParentTargetID":2,"GameContentLinks":{"Action":{"ClassJob":[63,70,71,74,3543,3545,3546,4262,7394,7395,7396,8780,8781,8782,8783,8784,8785,8787,8789,16473,16474,16475,16476,17719,17720,17721,17722,17723,17724,17725,17726,8788,8790,9639,17670,18913,18914,18915,69,25762,25763,25764,25766,25767,29472,29473,29474,29475,29476,29477,29478,29479,29480,29481,29482,29483,29484,29485]},"ActionIndirection":{"ClassJob":[8,14,15,16,17,18,19,20]},"Trait":{"ClassJob":[160,161,245,273,274,366,367,428,429,430,431,432,433,512,513,518]}},"ID":20,"Icon":"/cj/1/monk.png","Name_de":"Mönch","Name_en":"monk","Name_fr":"moine","Name_ja":"モンク","Url":"/ClassJob/20"},{"Abbreviation":"WAR","BattleClassIndex":"-1","ClassJobParentTargetID":3,"GameContentLinks":{"Action":{"ClassJob":[49,51,52,3549,3550,3551,3552,7386,7387,7388,7389,8758,8761,8762,8763,8764,8765,8767,8768,16462,16464,17695,17696,17697,17698,17889,17699,18904,18905,25751,25752,25753,29074,29075,29076,29078,29079,29080,29081,29082,29083,29084,29736]},"ActionIndirection":{"ClassJob":[69,70,4,5]},"Trait":{"ClassJob":[157,218,249,265,266,267,268,269,417,418,419,420,421,505]}},"ID":21,"Icon":"/cj/1/warrior.png","Name_de":"Krieger","Name_en":"warrior","Name_fr":"guerrier","Name_ja":"戦士","Url":"/ClassJob/21"},{"Abbreviation":"DRG","BattleClassIndex":"-1","ClassJobParentTargetID":4,"GameContentLinks":{"Action":{"ClassJob":[86,92,94,95,96,3553,3554,3555,3556,3557,7397,7398,7399,8791,8792,8793,8794,8795,8796,8797,8798,8799,8802,8803,8804,8805,8806,9640,16477,16478,16480,17728,17729,10032,17730,18916,18917,18918,18919,18920,25771,25772,25773,29486,29487,29488,29489,29490,29491,29492,29493,29494,29495,29496,29497,29498,29499]},"ActionIndirection":{"ClassJob":[25,87,21,22,23,24]},"Trait":{"ClassJob":[162,163,247,275,276,434,435,436,437,438,508]}},"ID":22,"Icon":"/cj/1/dragoon.png","Name_de":"Dragoon","Name_en":"dragoon","Name_fr":"chevalier dragon","Name_ja":"竜騎士","Url":"/ClassJob/22"},{"Abbreviation":"BRD","BattleClassIndex":"-1","ClassJobParentTargetID":5,"GameContentLinks":{"Action":{"ClassJob":[114,116,117,118,3558,3559,3560,3561,3562,7404,7405,7406,7407,7408,7409,8836,8837,8838,8839,8841,8842,8843,8844,9625,10023,16494,16495,16496,17745,17747,18930,18931,19071,25783,25785,29391,29392,29393,29394,29395,29396,29397,29398,29399,29400,29401]},"ActionIndirection":{"ClassJob":[53,54,55]},"Trait":{"ClassJob":[168,169,282,283,284,285,286,287,444,445,446,447,448]}},"ID":23,"Icon":"/cj/1/bard.png","Name_de":"Barde","Name_en":"bard","Name_fr":"barde","Name_ja":"吟遊詩人","Url":"/ClassJob/23"},{"Abbreviation":"WHM","BattleClassIndex":"-1","ClassJobParentTargetID":6,"GameContentLinks":{"Action":{"ClassJob":[131,136,137,139,140,3568,3569,3570,3571,7430,7431,7432,7433,8895,8896,8900,9621,16531,16532,16533,16534,16535,16536,17789,17790,17791,17793,17794,9620,13975,18945,18946,25859,25860,25861,25862,29223,29224,29225,29226,29227,29228,29229,29230]},"ActionIndirection":null,"Trait":{"ClassJob":[181,182,196,307,308,309,310,487,488,489,490]}},"ID":24,"Icon":"/cj/1/whitemage.png","Name_de":"Weißmagier","Name_en":"white mage","Name_fr":"mage blanc","Name_ja":"白魔道士","Url":"/ClassJob/24"},{"Abbreviation":"BLM","BattleClassIndex":"-1","ClassJobParentTargetID":7,"GameContentLinks":{"Action":{"ClassJob":[153,154,158,159,162,3573,3574,3575,3576,3577,7419,7420,7421,7422,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8869,9637,16505,16506,16507,17774,17775,18935,18936,25794,25795,25796,29371,29649,29650,29651,29652,29653,29654,29655,29656,29657,29658,29659,29660,29661,29662,29663]},"ActionIndirection":{"ClassJob":[74,76]},"Trait":{"ClassJob":[171,172,173,174,295,296,297,321,322,460,461,462,463,464,465,509]}},"ID":25,"Icon":"/cj/1/blackmage.png","Name_de":"Schwarzmagier","Name_en":"black mage","Name_fr":"mage noir","Name_ja":"黒魔道士","Url":"/ClassJob/25"},{"Abbreviation":"ACN","BattleClassIndex":7,"ClassJobParentTargetID":26,"GameContentLinks":{"Action":{"ClassJob":[163,164,165,168,170,172,173,174,178,181,16230,16508,16509,16512,16511,25798,25799,25800,25802,25803,25804,25883,25884]},"ActionIndirection":null,"Trait":{"ClassJob":[66,69,175,217,466,467]}},"ID":26,"Icon":"/cj/1/arcanist.png","Name_de":"Hermetiker","Name_en":"arcanist","Name_fr":"arcaniste","Name_ja":"巴術士","Url":"/ClassJob/26"},{"Abbreviation":"SMN","BattleClassIndex":"-1","ClassJobParentTargetID":26,"GameContentLinks":{"Action":{"ClassJob":[180,184,3578,3579,3580,3581,3582,7423,7424,7425,7427,7429,8872,8873,8874,8877,8878,8880,9014,9432,16510,16511,17777,17778,17779,17780,17781,17782,9013,18937,18938,18939,18953,7426,25801,25805,25806,25807,25822,25826,25838,25839,25840,29664,29665,29666,29667,29668,29669,29670,29671,29672,29673,29674,29678,29679]},"ActionIndirection":{"ClassJob":[17,19,20,79,80,81,83,84,85,86,76,77,78,82,87,88,89,90,91,92,93,94,95,96,97,98,99,100]},"Trait":{"ClassJob":[176,177,178,213,217,298,299,300,301,302,355,468,469,470,471,473,474,475,476,477,478,479,480,481,502,503]}},"ID":27,"Icon":"/cj/1/summoner.png","Name_de":"Beschwörer","Name_en":"summoner","Name_fr":"invocateur","Name_ja":"召喚士","Url":"/ClassJob/27"},{"Abbreviation":"SCH","BattleClassIndex":"-1","ClassJobParentTargetID":26,"GameContentLinks":{"Action":{"ClassJob":[166,167,185,186,188,189,190,3583,3584,3585,3586,3587,7434,7435,7436,7437,8904,8905,8909,9622,16537,16538,16539,16540,16541,16542,16543,16545,16546,17215,17216,17795,17796,17797,17798,17864,17865,17869,17870,17990,18940,18947,18948,18949,25865,25866,25867,25868,29231,29232,29233,29234,29235,29236,29237,29238,29716]},"ActionIndirection":{"ClassJob":[124,126]},"Trait":{"ClassJob":[184,214,311,312,313,324,491,492,493,494]}},"ID":28,"Icon":"/cj/1/scholar.png","Name_de":"Gelehrter","Name_en":"scholar","Name_fr":"érudit","Name_ja":"学者","Url":"/ClassJob/28"},{"Abbreviation":"ROG","BattleClassIndex":8,"ClassJobParentTargetID":29,"GameContentLinks":{"Action":{"ClassJob":[2240,2241,2242,2245,2247,2248,2254,2255,2257,2258]},"ActionIndirection":null,"Trait":{"ClassJob":[90,93]}},"ID":29,"Icon":"/cj/1/rogue.png","Name_de":"Schurke","Name_en":"rogue","Name_fr":"surineur","Name_ja":"双剣士","Url":"/ClassJob/29"},{"Abbreviation":"NIN","BattleClassIndex":"-1","ClassJobParentTargetID":29,"GameContentLinks":{"Action":{"ClassJob":[2246,2259,2260,2261,2262,2263,2264,3563,3566,7401,7402,7403,8807,8808,8809,8810,8812,8814,8815,8816,8820,9461,16488,16489,16493,17732,17733,17734,17735,17736,17737,17738,17739,8811,17731,18921,18922,18923,18924,18925,18987,25774,25777,25876,25778,29500,29501,29502,29503,29504,29505,29506,29507,29508,29509,29510,29511,29512,29513,29514,29515,29516,29559,29581,29707]},"ActionIndirection":{"ClassJob":[1,2,3,4,5,6,7,61,62,25,26,27,28,29,30,31,32,33,34,35,36]},"Trait":{"ClassJob":[165,166,167,250,279,280,439,440,441,515,516,522]}},"ID":30,"Icon":"/cj/1/ninja.png","Name_de":"Ninja","Name_en":"ninja","Name_fr":"ninja","Name_ja":"忍者","Url":"/ClassJob/30"},{"Abbreviation":"MCH","BattleClassIndex":9,"ClassJobParentTargetID":31,"GameContentLinks":{"Action":{"ClassJob":[2864,2866,2868,2870,2872,2873,2874,2876,2878,2890,7410,7411,7412,7413,7414,7415,7418,8848,8849,8850,8851,8853,8855,16497,16498,16499,16500,16501,16502,16889,17209,17749,17750,17751,17752,17753,17754,18932,18933,18934,25786,25788,29402,29403,29404,29405,29406,29407,29408,29409,29410,29411,29412,29414,29415]},"ActionIndirection":{"ClassJob":[26,65,66,67,68,54,55,56,57,58,59,60,61]},"Trait":{"ClassJob":[117,119,288,289,290,291,292,293,294,449,450,451,452,517]}},"ID":31,"Icon":"/cj/1/machinist.png","Name_de":"Maschinist","Name_en":"machinist","Name_fr":"machiniste","Name_ja":"機工士","Url":"/ClassJob/31"},{"Abbreviation":"DRK","BattleClassIndex":10,"ClassJobParentTargetID":32,"GameContentLinks":{"Action":{"ClassJob":[3617,3621,3623,3624,3625,3629,3632,3634,3636,3638,3639,3640,3641,3643,7390,7391,7392,7393,8769,8772,8773,8775,8776,8777,8778,8779,16466,16467,16468,16469,16470,16471,16472,17700,17701,17702,18906,18907,18908,18909,25754,25757,29085,29086,29087,29088,29089,29090,29091,29092,29093,29094,29095,29096,29097,29737,29738]},"ActionIndirection":{"ClassJob":[6]},"Trait":{"ClassJob":[158,159,271,272,319,422,423,506,511]}},"ID":32,"Icon":"/cj/1/darkknight.png","Name_de":"Dunkelritter","Name_en":"dark knight","Name_fr":"chevalier noir","Name_ja":"暗黒騎士","Url":"/ClassJob/32"},{"Abbreviation":"AST","BattleClassIndex":11,"ClassJobParentTargetID":33,"GameContentLinks":{"Action":{"ClassJob":[3590,3593,3594,3595,3596,3598,3599,3600,3601,3603,3604,3605,3606,3608,3610,3612,3613,3614,3615,7439,7442,7443,7448,8913,8914,8916,9629,10027,10028,10029,16552,16553,16554,16555,16556,16557,16559,17055,17804,17805,17806,17807,17809,17991,18941,18950,18951,25869,25870,25871,25872,25873,25874,29242,29243,29244,29245,29246,29247,29248,29249,29250,29251,29252,29253,29254,29255]},"ActionIndirection":{"ClassJob":[9,10,11,12,13,14,15,16,109,110,111,112,113,114,115,116,117,118]},"Trait":{"ClassJob":[122,124,125,186,187,188,189,314,315,316,495,496,497,498,499,500]}},"ID":33,"Icon":"/cj/1/astrologian.png","Name_de":"Astrologe","Name_en":"astrologian","Name_fr":"astromancien","Name_ja":"占星術師","Url":"/ClassJob/33"},{"Abbreviation":"SAM","BattleClassIndex":12,"ClassJobParentTargetID":34,"GameContentLinks":{"Action":{"ClassJob":[7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7501,7502,7855,7857,7867,8821,8822,8823,8824,8825,8826,8828,8829,8830,8831,8833,16481,16482,16483,16487,17740,17741,17742,17743,17744,8827,8832,18926,18927,18929,18988,25779,25780,25781,29523,29524,29525,29526,29527,29528,29529,29530,29531,29532,29533,29535,29536,29537]},"ActionIndirection":{"ClassJob":[21,22,23,71,72,73,36,37,38,39,40,41,42,43]},"Trait":{"ClassJob":[208,215,277,278,442,443,514,519,520,521]}},"ID":34,"Icon":"/cj/1/samurai.png","Name_de":"Samurai","Name_en":"samurai","Name_fr":"samouraï","Name_ja":"侍","Url":"/ClassJob/34"},{"Abbreviation":"RDM","BattleClassIndex":13,"ClassJobParentTargetID":35,"GameContentLinks":{"Action":{"ClassJob":[7503,7504,7505,7506,7507,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7523,7524,8882,8883,8884,8885,8887,8888,8889,8890,8891,8892,9433,9434,10025,16524,16525,16526,16527,16529,17786,17787,17788,8886,17718,17727,18944,20106,25855,25856,25857,29683,29684,29685,29686,29687,29688,29689,29690,29691,29692,29693,29694,29695,29696,29697,29698,29699,29700,29701,29702,29703,29704,29705]},"ActionIndirection":{"ClassJob":[27,28,29,30,74,75,76,77,99,100,101,102,103,104,105,106,107,108,109]},"Trait":{"ClassJob":[195,200,201,216,303,304,305,306,482,483,484,485,486]}},"ID":35,"Icon":"/cj/1/redmage.png","Name_de":"Rotmagier","Name_en":"red mage","Name_fr":"mage rouge","Name_ja":"赤魔道士","Url":"/ClassJob/35"},{"Abbreviation":"BLU","BattleClassIndex":14,"ClassJobParentTargetID":36,"GameContentLinks":{"Action":{"ClassJob":[11383,11384,11385,11386,11387,11388,11389,11390,11391,11392,11393,11394,11395,11396,11397,11398,11399,11400,11401,11402,11403,11404,11405,11406,11407,11408,11409,11410,11411,11412,11413,11414,11415,11416,11417,11418,11419,11420,11421,11422,11423,11424,11425,11426,11427,11428,11429,11430,11431,18295,18296,18297,18298,18299,18300,18301,18302,18303,18304,18305,18306,18307,18308,18309,18310,18311,18312,18313,18314,18315,18316,18317,18318,18319,18320,18321,18322,18323,18324,18325,23264,23265,23266,23267,23269,23270,23271,23272,23273,23275,23276,23277,23278,23279,23280,23281,23282,23283,23284,23285,23286,23287,23288,23290,23416]},"ActionIndirection":null,"Trait":{"ClassJob":[219,220,221,222,223,224]}},"ID":36,"Icon":"/cj/1/bluemage.png","Name_de":"Blaumagier","Name_en":"blue mage","Name_fr":"mage bleu","Name_ja":"青魔道士","Url":"/ClassJob/36"},{"Abbreviation":"GNB","BattleClassIndex":15,"ClassJobParentTargetID":37,"GameContentLinks":{"Action":{"ClassJob":[16137,16138,16139,16140,16141,16142,16143,16144,16145,16146,16147,16148,16149,16150,16151,16152,16153,16154,16155,16159,16160,16161,16162,16163,16164,16165,17703,17704,17705,17706,17707,17708,17709,17710,17711,17712,17713,17714,17716,17717,17890,17891,17715,17748,18910,18911,25758,25760,29098,29099,29100,29101,29102,29103,29104,29105,29106,29107,29108,29109,29110,29111,29112,29113,29114,29115,29116,29117,29118,29119,29120,29121,29122,29123,29124,29125,29126,29128,29129,29130,29131,29469,29557]},"ActionIndirection":{"ClassJob":[33,34,35,7,8,9,10,11,12]},"Trait":{"ClassJob":[257,258,259,320,424,425,426,427,507]}},"ID":37,"Icon":"/cj/1/gunbreaker.png","Name_de":"Revolverklinge","Name_en":"gunbreaker","Name_fr":"pistosabreur","Name_ja":"ガンブレイカー","Url":"/ClassJob/37"},{"Abbreviation":"DNC","BattleClassIndex":16,"ClassJobParentTargetID":38,"GameContentLinks":{"Action":{"ClassJob":[15989,15990,15991,15992,15993,15994,15995,15996,15997,15998,16005,16006,16007,16008,16009,16010,16011,16012,16013,16014,16015,17756,17757,17758,17759,17760,17761,17762,17763,17764,17765,17766,17767,17768,17769,17770,17771,17772,17773,17824,17825,17826,17827,17828,17829,18076,18993,18994,18995,18996,18997,25791,25792,29416,29417,29418,29419,29420,29421,29422,29423,29424,29425,29426,29427,29428,29429,29430,29431,29432,29470,29558]},"ActionIndirection":{"ClassJob":[36,37,38,39,40,43,60,61,62,63,64,67,72,73,65,66,69,74,75]},"Trait":{"ClassJob":[251,252,253,254,255,256,453,454,455,456,457]}},"ID":38,"Icon":"/cj/1/dancer.png","Name_de":"Tänzer","Name_en":"dancer","Name_fr":"danseur","Name_ja":"踊り子","Url":"/ClassJob/38"},{"Abbreviation":"RPR","BattleClassIndex":17,"ClassJobParentTargetID":39,"GameContentLinks":{"Action":{"ClassJob":[24373,24374,24375,24376,24377,24378,24379,24380,24381,24382,24383,24384,24385,24386,24387,24389,24392,24393,24394,24398,24401,24402,24404,24405,27795,27796,27797,27798,27799,27800,27801,27802,27803,27804,27805,27806,27807,27808,27809,27810,27811,27812,27813,27814,27815,27816,27817,27818,27819,27820,27821,29538,29539,29540,29541,29542,29543,29544,29545,29546,29547,29548,29549,29550,29551,29552,29553,29554,29566,29603]},"ActionIndirection":{"ClassJob":[43,44,45,47,48,49,50,51,52,46,53]},"Trait":{"ClassJob":[379,380,381,382,383,384,385,386,387]}},"ID":39,"Icon":"/cj/1/reaper.png","Name_de":"Schnitter","Name_en":"reaper","Name_fr":"faucheur","Name_ja":"リーパー","Url":"/ClassJob/39"},{"Abbreviation":"SGE","BattleClassIndex":18,"ClassJobParentTargetID":40,"GameContentLinks":{"Action":{"ClassJob":[24283,24284,24285,24286,24287,24288,24289,24290,24294,24295,24296,24297,24298,24299,24300,24301,24302,24303,24304,24305,24306,24307,24309,24310,24311,24312,24313,24315,24316,24317,24318,27822,27823,27824,27825,27826,27827,27828,27829,27830,27831,27832,27833,27834,27835,29256,29257,29258,29259,29260,29261,29262,29263,29264,29265,29266,29267]},"ActionIndirection":{"ClassJob":[119,120,121,122,123,124,125]},"Trait":{"ClassJob":[368,369,370,371,372,373,374,375,376,377,378,510]}},"ID":40,"Icon":"/cj/1/sage.png","Name_de":"Weiser","Name_en":"sage","Name_fr":"sage","Name_ja":"賢者","Url":"/ClassJob/40"}] \ No newline at end of file